单链表不带头标准c语言实现

链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 相比于线性表顺序结构,操作复杂。由于不必须按顺序存储,链表在插入的时候可以达到O(1)的复杂度,比另一种线性表顺序表快得多,但是查找一个节点或者访问特定编号的节点则需要O(n)的时间,而线性表和顺序表相应的时间复杂度分别是O(logn)和O(1)。

使用链表结构可以克服数组链表需要预先知道数据大小的缺点,链表结构可以充分利用计算机内存空间,实现灵活的内存动态管理。但是链表失去了数组随机读取的优点,同时链表由于增加了结点的指针域,空间开销比较大。链表最明显的好处就是,常规数组排列关联项目的方式可能不同于这些数据项目在记忆体或磁盘上顺序,数据的存取往往要在不同的排列顺序中转换。链表允许插入和移除表上任意位置上的节点,但是不允许随机存取。链表有很多种不同的类型:单向链表,双向链表以及循环链表。

下面给出不带头的单链表标准实现:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef struct node
  4. {
  5. int data;
  6. struct node *next;
  7. } Node;
  8. void pushBackList(Node *list, int data) //尾插
  9. {
  10. Node *head = list;
  11. Node *newNode = (Node *)malloc(sizeof(Node)); //申请空间
  12. newNode->data = data;
  13. newNode->next = NULL;
  14. if (list == NULL) //为空
  15. list = newNode;
  16. else //非空
  17. {
  18. while (head->next != NULL)
  19. head = head->next;
  20. head->next = newNode;
  21. }
  22. }
  23. /* 初始条件:链式线性表L已存在。操作结果:返回L中数据元素个数 */
  24. int sizeList(Node *list)
  25. {
  26. int i = 0;
  27. Node *p = list->next; /* p指向第一个结点 */
  28. while (p)
  29. {
  30. i++;
  31. p = p->next;
  32. }
  33. return i;
  34. }
  35. int insertList(Node *list, int index, int data) //插入
  36. {
  37. int n;
  38. int size = sizeList(list); //获取链表长度
  39. Node *head = list;
  40. Node *newNode, *temp;
  41. if (index < 0 || index > size)
  42. return 0; //非法,要插入的位置小于0,大于链表长度
  43. newNode = (Node *)malloc(sizeof(Node)); //创建新节点
  44. newNode->data = data;
  45. newNode->next = NULL;
  46. if (index == 0) //头插
  47. {
  48. newNode->next = head;
  49. list = newNode;
  50. return 1;
  51. }
  52. for (n = 1; n < index; n++) //非头插
  53. head = head->next;
  54. if (index != size)
  55. newNode->next = head->next;
  56. //链表尾部next不需指定
  57. head->next = newNode;
  58. return 1;
  59. }
  60. void deleteList(Node *list, int data) //按值删除
  61. {
  62. Node *head = list;
  63. Node *temp;
  64. while (head->next != NULL)
  65. {
  66. if (head->next->data != data)
  67. {
  68. head = head->next;
  69. continue;
  70. }
  71. temp = head->next;
  72. if (head->next->next == NULL) //尾节点删除
  73. head->next = NULL;
  74. else
  75. head->next = temp->next;
  76. free(temp);
  77. }
  78. head = list;
  79. if (head->data == data) //头结点删除
  80. {
  81. temp = head;
  82. list = head->next;
  83. head = head->next;
  84. free(temp);
  85. }
  86. }
  87. int printList(Node *list) //打印
  88. {
  89. if (list->next == NULL)
  90. {
  91. printf("打印 \n");
  92. return 0;
  93. }
  94. Node *temp = list->next;
  95. for (; temp != NULL; temp = temp->next)
  96. printf("%d ", temp->data);
  97. printf("\n");
  98. return 1;
  99. }
  100. int freeList(Node *list) //清空
  101. {
  102. /*
  103. 暂时未知
  104. */
  105. // Node *head = list;
  106. // Node *temp = NULL;
  107. // printf("666");
  108. // while (head != NULL) //依次释放
  109. // {
  110. // temp = head;
  111. // head = head->next;
  112. // free(temp);
  113. // }
  114. list->next = NULL; //置空
  115. printf("清空\n");
  116. return 0;
  117. }
  118. int main(void) //测试
  119. {
  120. Node *head;
  121. for (int i = 0; i < 10; i++)
  122. {
  123. pushBackList(head, i);
  124. }
  125. insertList(head, 10, 10);
  126. insertList(head, 5, 10);
  127. printList(head);
  128. deleteList(head,10);
  129. printList(head);
  130. int a = freeList(head);
  131. printf("%d \n", a);
  132. printList(head);
  133. }

运行结果

  1. 0 1 2 3 10 4 5 6 7 8 10
  2. 0 1 2 3 4 5 6 7 8
  3. 清空
  4. 0
  5. 打印

别的也没啥了,都是基本操作 有些代码要分情况,很麻烦,可读性较强吧

单链表不带头压缩c语言实现

注:单追求代码简洁,所以写法可能有点不标准。

  1. //第一次拿c开始写数据结构,因为自己写的,追求代码量少,和学院ppt不太一样。有错请指出
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. typedef struct node//定义节点
  6. {
  7. int data;
  8. struct node * next;
  9. }Node;
  10. //函数介绍
  11. void printlist(Node * head);//打印链表
  12. int lenlist(Node * head);//返回链表长度
  13. void insertlist(Node ** list,int data,int index);//插入元素
  14. void pushback(Node ** head,int data);//尾部插入
  15. void freelist(Node ** head);//清空链表
  16. void deletelist(Node ** list,int data);//删除元素
  17. Node * findnode(Node ** list,int data);//查找
  18. void change(Node ** list,int data,int temp);//改变值
  19. void printlist(Node * head)//打印链表
  20. {
  21. for(;head!=NULL;head=head->next) printf("%d ",head->data);
  22. printf("\n");//为了其他函数打印,最后换行
  23. }
  24. int lenlist(Node * head)//返回链表长度
  25. {
  26. int len;
  27. Node * temp = head;
  28. for(len=0; temp!=NULL; len++) temp=temp->next;
  29. return len;
  30. }
  31. void insertlist(Node ** list,int data,int index)//插入元素,用*list将head指针和next统一表示
  32. {
  33. if(index<0 || index>lenlist(*list))return;//判断非法输入
  34. Node * newnode=(Node *)malloc(sizeof(Node));//创建
  35. newnode->data=data;
  36. newnode->next=NULL;
  37. while(index--)list=&((*list)->next);//插入
  38. newnode->next=*list;
  39. *list=newnode;
  40. }
  41. void pushback(Node ** head,int data)//尾插,同上
  42. {
  43. Node * newnode=(Node *)malloc(sizeof(Node));//创建
  44. newnode->data=data;
  45. newnode->next=NULL;
  46. while(*head!=NULL)head=&((*head)->next);//插入
  47. *head=newnode;
  48. }
  49. void freelist(Node ** head)//清空链表
  50. {
  51. Node * temp=*head;
  52. Node * ttemp;
  53. *head=NULL;//指针设为空
  54. while(temp!=NULL)//释放
  55. {
  56. ttemp=temp;
  57. temp=temp->next;
  58. free(ttemp);
  59. }
  60. }
  61. void deletelist(Node ** list,int data)//删除链表节点
  62. {
  63. Node * temp;//作用只是方便free
  64. while((*list)->data!=data && (*list)->next!=NULL)list=&((*list)->next);
  65. if((*list)->data==data){
  66. temp=*list;
  67. *list=(*list)->next;
  68. free(temp);
  69. }
  70. }
  71. Node * findnode(Node ** list,int data)//查找,返回指向节点的指针,若无返回空
  72. {
  73. while((*list)->data!=data && (*list)!=NULL) list=&((*list)->next);
  74. return *list;
  75. }
  76. void change(Node ** list,int data,int temp)//改变
  77. {
  78. while((*list)->data!=data && (*list)->next!=NULL)list=&((*list)->next);
  79. if((*list)->data==data)(*list)->data=temp;
  80. }
  81. int main(void)//测试
  82. {
  83. Node * head=NULL;
  84. Node ** gg=&head;
  85. int i;
  86. for(i=0;i<10;i++)pushback(gg,i);
  87. printf("链表元素依次为: ");
  88. printlist(head);
  89. printf("长度为%d\n",lenlist(head));
  90. freelist(gg);
  91. printf("释放后长度为%d\n",lenlist(head));
  92. for(i=0;i<10;i++)pushback(gg,i);
  93. deletelist(gg,0);//头
  94. deletelist(gg,9);//尾
  95. deletelist(gg,5);
  96. deletelist(gg,100);//不存在
  97. printf("再次创建链表,删除节点后\n");
  98. printlist(head);
  99. freelist(gg);
  100. for(i=0;i<5;i++)pushback(gg,i);
  101. insertlist(gg,5,0);//头
  102. insertlist(gg,5,5);
  103. insertlist(gg,5,7);//尾
  104. insertlist(gg,5,10);//不存在
  105. printlist(head);
  106. printf("找到%d\n把3变为100",*findnode(gg,5));
  107. change(gg,3,100);
  108. change(gg,11111,1);//不存在
  109. printlist(head);
  110. }

运行结果

  1. 链表元素依次为: 0 1 2 3 4 5 6 7 8 9
  2. 长度为10
  3. 释放后长度为0
  4. 再次创建链表,删除节点后
  5. 1 2 3 4 6 7 8
  6. 5 0 1 2 3 5 4 5
  7. 找到6422000
  8. 3变为1005 0 1 2 100 5 4 5