C语言实现带头双向循环链表的接口

 更新时间:2021年10月20日 11:54:47   作者:__ericZhao  
这篇文章主要为大家详细介绍了C语言实现带头双向循环链表的接口,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C语言实现带头双向循环链表的接口,供大家参考,具体内容如下

各函数功能如下

申请空间

ListNode* BuyListNode(LTDataType x)
{
 ListNode* node = (ListNode*)malloc(sizeof(ListNode));
 node->next = NULL;
 node->prev = NULL;
 node->data = x;
 return node;
}

初始化

ListNode* ListInit()
{
 ListNode* phead = BuyListNode(0);
 phead->next = phead;
 phead->prev = phead;

 return phead;
}

指定位置插入

void ListInsert(ListNode* pos, LTDataType x)
{
 assert(pos);

 ListNode* prev = pos->prev;
 ListNode* newnode = BuyListNode(x);
 prev->next = newnode;
 newnode->prev = prev;
 newnode->next = pos;
 pos->prev = newnode;
}

头插

void ListPushFront(ListNode* phead, LTDataType x)
{
 //assert(phead);
 //ListNode* first = phead->next;
 //ListNode* newnode = BuyListNode(x);
 phead newnode first
 //phead->next = newnode;
 //newnode->prev = phead;
 //newnode->next = first;
 //first->prev = newnode;


 ListInsert(phead->next, x);//实现了指定位置插入后,可以套用
}

尾插

void ListPushBack(ListNode* phead, LTDataType x)
{
 //assert(phead);
 //ListNode* tail = phead->prev;
 //ListNode* newnode = BuyListNode(x);

 //tail->next = newnode;
 //newnode->prev = tail;
 //newnode->next = phead;
 //phead->prev = newnode;

 ListInsert(phead, x);
}

指定位置删除

void ListErase(ListNode* pos)
{
 assert(pos);

 ListNode* prev = pos->prev;
 ListNode* next = pos->next;

 prev->next = next;
 next->prev = prev;

 free(pos);
}

头删

void ListPopFront(ListNode* phead)
{
 //assert(phead);
 //assert(phead->next != phead);

 //ListNode* first = phead->next;
 //ListNode* second = first->next;

 //free(first);

 //phead->next = second;
 //second->prev = phead;

 ListErase(phead->next);
}

尾删

void ListPopBack(ListNode* phead)
{
 //assert(phead);
 //assert(phead->next != phead);

 //ListNode* tail = phead->prev;
 //ListNode* tailPrev = tail->prev;
 //free(tail);

 //tailPrev->next = phead;
 //phead->prev = tailPrev;

 ListErase(phead->prev);

}

查找

ListNode* ListFind(ListNode* phead, LTDataType x)
{
 assert(phead);

 ListNode* cur = phead->next;
 while (cur)
 {
  if (cur->data == x)
  {
   return cur;
  }
  cur = cur->next;
 }

 return NULL;
}

判空

int ListEmpty(ListNode* phead)
{
 assert(phead);
 return phead->next == phead ? 1 : 0;
}

元素个数

int ListSize(ListNode* phead)
{
 assert(phead);

 int size = 0;
 ListNode* cur = phead->next;
 while (cur != phead)
 {
  size++;
  cur = cur->next;
 }
 return size;
}

链表销毁

void ListDestory(ListNode* phead)
{
 assert(phead);

 ListNode* cur = phead->next;
 while (cur != phead)
 {
  ListNode* next = cur->next;
  free(cur);
  cur = next;
 }

 free(phead);
 phead = NULL;
}

List.h

#pragma once
#define _CRT_SECURE_NO_WARNINGS 1

#include <stdlib.h>
#include <stdio.h>
#include <assert.h>

typedef int LTDataType;
typedef struct ListNode
{
 struct ListNode* next;
 struct ListNode* prev;
 LTDataType data;
}ListNode;

//打印
void ListPrint(ListNode* phead);

//申请空间
ListNode* BuyListNode(LTDataType x);

//初始化
ListNode* ListInit();

//尾插
void ListPushBack(ListNode* phead, LTDataType x);

//头插
void ListPushFront(ListNode* phead, LTDataType x);

//尾删
void ListPopBack(ListNode* phead);

//头删
void ListPopFront(ListNode* phead);

//查找
ListNode* ListFind(ListNode* phead, LTDataType x);

//插入
void ListInsert(ListNode* pos, LTDataType x);

//删除
void ListErase(ListNode* pos);

//空返回1,非空返回0
int ListEmpty(ListNode* phead);

//元素个数
int ListSize(ListNode* phead);

//链表销毁
void ListDestory(ListNode* phead);

List.c

#include "List.h"

ListNode* BuyListNode(LTDataType x)
{
 ListNode* node = (ListNode*)malloc(sizeof(ListNode));
 node->next = NULL;
 node->prev = NULL;
 node->data = x;
 return node;
}


ListNode* ListInit()
{
 ListNode* phead = BuyListNode(0);
 phead->next = phead;
 phead->prev = phead;

 return phead;
}

//打印
void ListPrint(ListNode* phead)
{
 ListNode* cur = phead->next;
 while (cur != phead)
 {
  printf("%d ", cur->data);
  cur = cur->next;
 }
 puts("\n------------------------------------------------\n");
}


void ListPushBack(ListNode* phead, LTDataType x)
{
 //assert(phead);
 //ListNode* tail = phead->prev;
 //ListNode* newnode = BuyListNode(x);

 //tail->next = newnode;
 //newnode->prev = tail;
 //newnode->next = phead;
 //phead->prev = newnode;

 ListInsert(phead, x);
}


//头插
void ListPushFront(ListNode* phead, LTDataType x)
{
 //assert(phead);
 //ListNode* first = phead->next;
 //ListNode* newnode = BuyListNode(x);
 phead newnode first
 //phead->next = newnode;
 //newnode->prev = phead;
 //newnode->next = first;
 //first->prev = newnode;


 ListInsert(phead->next, x);
}


//尾删
void ListPopBack(ListNode* phead)
{
 //assert(phead);
 //assert(phead->next != phead);

 //ListNode* tail = phead->prev;
 //ListNode* tailPrev = tail->prev;
 //free(tail);

 //tailPrev->next = phead;
 //phead->prev = tailPrev;

 ListErase(phead->prev);

}

//头删
void ListPopFront(ListNode* phead)
{
 //assert(phead);
 //assert(phead->next != phead);

 //ListNode* first = phead->next;
 //ListNode* second = first->next;

 //free(first);

 //phead->next = second;
 //second->prev = phead;

 ListErase(phead->next);
}

//查找
ListNode* ListFind(ListNode* phead, LTDataType x)
{
 assert(phead);

 ListNode* cur = phead->next;
 while (cur)
 {
  if (cur->data == x)
  {
   return cur;
  }
  cur = cur->next;
 }

 return NULL;
}

//插入
void ListInsert(ListNode* pos, LTDataType x)
{
 assert(pos);

 ListNode* prev = pos->prev;
 ListNode* newnode = BuyListNode(x);
 prev->next = newnode;
 newnode->prev = prev;
 newnode->next = pos;
 pos->prev = newnode;
}

//删除
void ListErase(ListNode* pos)
{
 assert(pos);

 ListNode* prev = pos->prev;
 ListNode* next = pos->next;

 prev->next = next;
 next->prev = prev;

 free(pos);
}


//空返回1,非空返回0
int ListEmpty(ListNode* phead)
{
 assert(phead);
 return phead->next == phead ? 1 : 0;
}


int ListSize(ListNode* phead)
{
 assert(phead);

 int size = 0;
 ListNode* cur = phead->next;
 while (cur != phead)
 {
  size++;
  cur = cur->next;
 }
 return size;
}

void ListDestory(ListNode* phead)
{
 assert(phead);

 ListNode* cur = phead->next;
 while (cur != phead)
 {
  ListNode* next = cur->next;
  free(cur);
  cur = next;
 }

 free(phead);
 phead = NULL;
}

test.c

#include "List.h"


void TestList1()
{
 ListNode* plist = ListInit();
 ListPushBack(plist, 1);
 ListPushBack(plist, 2);
 ListPushBack(plist, 3);
 ListPushBack(plist, 4);
 ListPrint(plist);


 ListPushFront(plist, 0);
 ListPushFront(plist, -1);
 ListPushFront(plist, -2);
 ListPrint(plist);

 ListPopFront(plist);
 ListPopFront(plist);
 ListPopFront(plist);
 ListPrint(plist);


 ListDestory(plist);
 plist = NULL;
}


int main()
{
 TestList1();
 return 0;
}

总结

链表优点:

1.按需申请内存,需要存一个数据,就申请一块内存。不存在空间浪费。
2.任意位置O(1)时间内插入删除数据

链表缺点:

1.不支持下标的随机访问
2.缓存命中率相对低。

顺序表优点

1.按下标去进行随机访问
2.cpu高速缓存命中率比较高

顺序表缺点

1.空间不够需要增容。(一定程序的性能消耗),可能存在一定的空间浪费
2.头部或者中间插入删除数据,需要挪动数据,效率比较低->O(N)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • C++移动语义介绍与使用讲解

    C++移动语义介绍与使用讲解

    首先,移动语义和完美转发这两个概念是在C++的模板编程的基础上,新增的特性,主要是配合模板来使用。本篇会从C++的值类型,到移动拷贝与移动赋值来理解移动语义与完美转发
    2022-09-09
  • Qt实现http服务的示例代码

    Qt实现http服务的示例代码

    这篇文章将为大家详细讲解有关Qt如何实现http服务,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获
    2023-04-04
  • C/C++新建注册表项的代码示例

    C/C++新建注册表项的代码示例

    今天小编就为大家分享一篇关于C/C++新建注册表项的代码示例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2018-12-12
  • C语言驱动开发之内核通过PEB获取进程参数

    C语言驱动开发之内核通过PEB获取进程参数

    PEB结构(Process Envirorment Block Structure)其中文名是进程环境块信息。本文将通过PEB实现获取进程参数,感兴趣的小伙伴可以了解一下
    2022-10-10
  • 简单介绍C++中变量的引用

    简单介绍C++中变量的引用

    这篇文章主要简单介绍了C++中变量的引用,是C++入门学习中的基础知识,需要的朋友可以参考下
    2015-09-09
  • C语言数据结构之单链表操作详解

    C语言数据结构之单链表操作详解

    链表是一种物理存储结构上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。本文将和大家一起聊聊C语言中单链表的常用操作,感兴趣的可以学习一下
    2022-07-07
  • Visual Studio 2022无法打开源文件的解决方式

    Visual Studio 2022无法打开源文件的解决方式

    这篇文章主要介绍了Visual Studio 2022无法打开源文件的解决方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2023-01-01
  • C++实现LeetCode(237.删除链表的节点)

    C++实现LeetCode(237.删除链表的节点)

    这篇文章主要介绍了C++实现LeetCode(237.删除链表的节点),本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下
    2021-08-08
  • 如何写出优美的C语言代码

    如何写出优美的C语言代码

    今天小编就为大家分享一篇关于如何写出优美的C语言代码,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-01-01
  • C++结构体案例练习分享

    C++结构体案例练习分享

    这篇文章主要和大家分享几个C++ 结构体的案例练习,帮助大家更好的理解和学习c++,感兴趣的朋友可以了解下,希望能够给你带来帮助
    2022-04-04

最新评论