当前位置:   article > 正文

数据结构与算法 | 单链表的基本操作_6-1 单链表结点和

6-1 单链表结点和

1024G 嵌入式资源大放送!包括但不限于C/C++、单片机、Linux等。关注微信公众号【嵌入式大杂烩】,回复1024,即可免费获取!

线性表的存储结构有顺序存储结构(顺序表)和链式存储结构(链表)两种。顺序表在之前的博客有介绍过,不明白的朋友可查看:静态分配顺序表的基本操作动态分配顺序表的基本操作。相对于顺序表来说,链表稍微难一些,本人花了两天的时间认真查看了一些资料,终于大致明白了一些东西。现在做一些总结,分享给大家,有错误的地方欢迎大家指正。

一、相关概念术语

1、链表结点由数据域(存放本身信息)和指针域(指向后继结点的指针)构成。如下图所示:

结点

                                                                               图1 结点的构成

其C语言定义可表示为:

  1. typedef struct LNode
  2. {
  3. int data; //data中存放结点数据域(默认是int型)
  4. struct LNode *next; //指向后继结点的指针
  5. }LNode;

2、头结点:在开始结点之前的结点(可有可无)。其值域不包含任何信息。

3、开始结点:第一个元素所在的结点。

4、头指针:永远指向链表中第一个结点的位置(如果链表有头结点,头指针指向头结点;否则,头指针指向开始结点)。

5、单链表

带头结点的单链表

                                                                            图2 带头结点的单链表

(1)带头结点的单链表:头指针head指向头结点。头指针head始终不等于NULL,head->next等于NULL的时候链表为空。

(2)不带头结点的单链表:头结点head指向开始结点,即图2中的a1,当head等于NULL时链表为空。

6、头结点和头指针的区别:头指针是一个指针,头指针指向链表的第一个结点(如果链表有头结点,头指针指向头结点;否则,

头指针指向开始结点);头结点是一个实际存在的点,它包含有数据域和指针域。两者在程序上的直接体现就是:头指针至声明

而没有分配存储空间,头结点进行了声明并分配了一个结点的实际物理内存。

 

二、代码部分

 

1、单链表结点定义

  1. typedef struct LNode
  2. {
  3. int data; //data中存放结点数据域(默认是int型)
  4. struct LNode *next; //指向后继结点的指针
  5. }LNode;

2、单链表的创建

单链表的创建有两种方法,即头插法和尾插法。原理如下图所示:

                                                                             图3 头插法与尾插法

(1)头插法创建单链表(生成的链表是逆序的)的代码如下:

  1. LNode *HeadCreateList(int len)
  2. {
  3. LNode *L = (LNode*)malloc(sizeof(LNode)); //创建一个头结点
  4. LNode *temp = L;//声明一个中间变量,指向头结点,用于遍历链表(曾因没有这个中间变量而出错)
  5. temp->next = NULL; //该链表此刻只带头结点
  6. for(int i=1;i<=len;i++) //循环申请len个结点来接收scanf得到的元素
  7. {
  8. LNode *p = (LNode*)malloc(sizeof(LNode)); //生成新结点
  9. scanf("%d",&p->data); //用新申请的结点来接收scanf得到的元素
  10. /* 以下两条语句是头插法的关键步骤,与本工程"Insert"函数原理一样 */
  11. p->next = temp->next; //新结点的next指针指向开始结点
  12. temp->next = p; //头结点的next指针指向新结点
  13. }
  14. return (LNode*)L;
  15. }

程序运行结果如下:

 

(2)尾插法创建单链表(生成的链表是顺序的)的代码如下:

  1. LNode *TailCreateList(int len)
  2. {
  3. LNode *L = (LNode*)malloc(sizeof(LNode)); //创建一个头结点
  4. LNode *temp = L;//声明一个中间变量,指向头结点,用于遍历链表(曾因没有这个中间变量而出错)
  5. temp->next = NULL;//该链表此刻只带头结点
  6. for(int i=1;i<=len;i++) //循环申请len个结点来接收scanf得到的元素
  7. {
  8. LNode *p = (LNode*)malloc(sizeof(LNode)); //生成新结点
  9. scanf("%d",&p->data); //用新申请的结点来接收scanf得到的元素
  10. /* 以下两条语句是尾插法的关键步骤 */
  11. temp->next = p; //用来接纳新结点
  12. temp = p; //指向终端结点,以便于接纳下一个到来的结点,此语句也可以改为"L = L->next"
  13. }
  14. temp->next = NULL; //此刻所有元素已经全装入链表L中,L的终端结点的指针域置为NULL
  15. return (LNode*)L;
  16. }

程序运行结果如下:

 

2、链表中查找某结点

因为链表不支持随机访问,即链表的存取方式是顺序存取的(注意“存储”与“存取”是两个不一样的概念),所以要查找某结点,必须通过遍历的方式查找。例如:如果想查找第5个结点,必须先遍历走过第1~4个结点,才能得到第5个结点。代码如下:

  1. int Serch(LNode *L, int elem)
  2. {
  3. LNode *temp = L;
  4. int pos = 0;
  5. int i = 1;
  6. while(temp->next)
  7. {
  8. temp = temp->next;
  9. if(elem==temp->data)
  10. {
  11. pos = i;
  12. printf("The %d position in the list is %d\n",elem,pos);
  13. return pos; //返回elem元素在顺序表中的位置
  14. }
  15. i++;
  16. }
  17. printf("Serch error!\n");
  18. return ERROR; //查找失败
  19. }

程序运行结果如下:

 

3、修改某结点的数据域

要修改某结点的数据域,首先通过遍历的方法找到该结点,然后直接修改该结点的数据域的值。代码如下:

  1. LNode *Replace(LNode *L, int pos, int elem)
  2. {
  3. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  4. temp = temp->next; //在遍历之前,temp指向开始结点
  5. for(int i=1;i<pos;i++)
  6. {
  7. temp = temp->next;
  8. }
  9. temp->data = elem; //找到要替换的结点并替换其数据域的值为elem
  10. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  11. }

程序运行结果如下:

 

4、往链表中插入结点

插入结点的位置有三种:

(1)插入到链表的首部,也就是头结点和开始结点之间;

(2)插入到链表中间的某个位置;

(3)插入到链表的末端。

                                                                          图4 链表中插入结点5

虽然插入的位置有区别,都使用相同的插入手法。分为两步,如图4所示:

(1)将新结点的next指针指向插入位置的后一个结点;

(2)将插入位置的前一个结点的next指针指向插入结点。

代码如下:

  1. LNode *Insert(LNode *L, int pos, int elem)
  2. {
  3. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  4. int i = 0;
  5. /* 首先找到插入结点的上一结点,即第pos-1个结点 */
  6. while( (temp!=NULL)&&(i<pos-1) )
  7. {
  8. temp = temp->next;
  9. ++i;
  10. }
  11. /* 错误处理:链表为空或插入位置不存在 */
  12. if( (temp==NULL)||(i>pos-1) )
  13. {
  14. printf("%s:Insert false!\n",__FUNCTION__);
  15. return (LNode*)temp;
  16. }
  17. LNode *new = (LNode*)malloc(sizeof(LNode)); //创建新结点new
  18. new->data = elem; //插入的新结点的数据域
  19. new->next = temp->next; //新结点的next指针指向插入位置后的结点
  20. temp->next = new; //插入位置前的结点的next指针指向新结点
  21. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  22. }

程序运行结果如下:

 

5、删除链表结点

                                                                                           图5 删除结点

当需要从链表中删除某结点时,需要进行两部操作:

(1)将结点从链表中摘下来,即修改指针指向为:被删除结点的前一个结点的next指针指向被删除结点之后的结点。

(2)手动释放掉被删除结点所占用的内存。

代码如下:

  1. LNode *Delete(LNode *L, int pos, int *elem)
  2. {
  3. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  4. int i = 0;
  5. /* 首先找到删除结点的上一结点,即第pos-1个结点 */
  6. while( (temp!=NULL)&&(i<pos-1) )
  7. {
  8. temp = temp->next;
  9. ++i;
  10. }
  11. /* 错误处理:链表为空或删除位置不存在 */
  12. if( (temp==NULL)||(i>pos-1) )
  13. {
  14. printf("%s:Delete false!\n",__FUNCTION__);
  15. return (LNode*)temp;
  16. }
  17. LNode *del = temp->next; //定义一个del指针指向被删除结点
  18. *elem = del->data; //保存被删除的结点的数据域
  19. temp->next = del->next; /*删除结点的上一个结点的指针域指向删除结点的下一个结点,
  20. 也可写为“temp->next = temp->next->next”*/
  21. free(del); //手动释放该结点,防止内存泄露
  22. del = NULL; //防止出现野指针
  23. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  24. }

程序运行结果如下:

 

以下是完整的代码:

  1. /*----------------------------------------------------------------------------------------
  2. Program Explain:单链表的基本操作
  3. Create Date:2018.2.13 by lzn
  4. ----------------------------------------------------------------------------------------*/
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #define ERROR 1
  8. #define OK 0
  9. /* 单链表结点定义 */
  10. typedef struct LNode
  11. {
  12. int data; //data中存放结点数据域(默认是int型)
  13. struct LNode *next; //指向后继结点的指针
  14. }LNode;
  15. //操作函数的声明
  16. LNode *HeadCreateList(int len); //头插法建立单链表
  17. LNode *TailCreateList(int len); //尾插法建立单链表
  18. int Serch(LNode *L, int elem); //在表中寻找元素的位置
  19. LNode *Replace(LNode *L, int pos, int elem); //替换第pos个位置的元素成elem
  20. LNode *Insert(LNode *L, int pos, int elem); //在表中插入新结点
  21. LNode *Delete(LNode *L, int pos, int *elem); //删除表中的结点
  22. void PrintfList(LNode *L); //打印链表
  23. int MenuSelect(void); //菜单
  24. //测试函数的声明
  25. void Test1(LNode *L); //测试"Serch"函数
  26. void Test2(LNode *L); //测试"Replace"函数
  27. void Test3(LNode *L); //测试"Insert"函数
  28. void Test4(LNode *L); //测试"Delete"函数
  29. LNode *Test5(void); //测试"TailCreateList"函数
  30. LNode *Test6(void); //测试"HeadCreateList"函数
  31. /*********************************************************************************
  32. * Function Name : main主函数
  33. * Parameter : NULL
  34. * Return Value : 0
  35. * Function Explain :
  36. * Create Date : 2018.2.13 by lzn
  37. **********************************************************************************/
  38. int main(void)
  39. {
  40. int len = 0;
  41. int cmd;
  42. LNode *L;
  43. /* 初始默认为尾插法建立单链表 */
  44. printf("Please input list length:");
  45. scanf("%d",&len);
  46. L = TailCreateList(len);
  47. PrintfList(L);
  48. while(1)
  49. {
  50. cmd = MenuSelect();
  51. switch(cmd)
  52. {
  53. case 1: Test1(L); break; //测试"Serch"函数
  54. case 2: Test2(L); break; //测试"Replace"函数
  55. case 3: Test3(L); break; //测试"Insert"函数
  56. case 4: Test4(L); break; //测试"Delete"函数
  57. case 5: L=Test5(); break; //测试"TailCreateList"函数
  58. case 6: L=Test6(); break; //测试"HeadCreateList"函数
  59. case 7: system("cls"); break; //清屏
  60. case 8: exit(0); break; //退出
  61. }
  62. }
  63. return 0;
  64. }
  65. /*********************************************************************************
  66. * Function Name : HeadCreateList, 头插法建立单链表(逆序)
  67. * Parameter : len:链表长度
  68. * Return Value : 创建好的链表
  69. * Function Explain : 从一个空表开始,不断读入数据,生成新结点,将读入数据存放到新
  70. 结点的数据域中,然后将新结点插入到当前链表的表头结点之后。
  71. * Create Date : 2018.2.13 by lzn
  72. **********************************************************************************/
  73. LNode *HeadCreateList(int len)
  74. {
  75. LNode *L = (LNode*)malloc(sizeof(LNode)); //创建一个头结点
  76. LNode *temp = L;//声明一个中间变量,指向头结点,用于遍历链表(曾因没有这个中间变量而出错)
  77. temp->next = NULL; //该链表此刻只带头结点
  78. for(int i=1;i<=len;i++) //循环申请len个结点来接收scanf得到的元素
  79. {
  80. LNode *p = (LNode*)malloc(sizeof(LNode)); //生成新结点
  81. scanf("%d",&p->data); //用新申请的结点来接收scanf得到的元素
  82. /* 以下两条语句是头插法的关键步骤,与本工程"Insert"函数原理一样 */
  83. p->next = temp->next; //新结点的next指针指向开始结点
  84. temp->next = p; //头结点的next指针指向新结点
  85. }
  86. return (LNode*)L;
  87. }
  88. /*********************************************************************************
  89. * Function Name : TailCreateList, 尾插法建立单链表(顺序)
  90. * Parameter : len:链表长度
  91. * Return Value : 创建好的链表
  92. * Function Explain : 从一个空表开始,不断读入数据,生成新结点,将读入数据存放到新
  93. 结点的数据域中,然后将新结点插入到当前链表的表尾结点之后。
  94. * Create Date : 2018.2.13 by lzn
  95. **********************************************************************************/
  96. LNode *TailCreateList(int len)
  97. {
  98. LNode *L = (LNode*)malloc(sizeof(LNode)); //创建一个头结点
  99. LNode *temp = L;//声明一个中间变量,指向头结点,用于遍历链表(曾因没有这个中间变量而出错)
  100. temp->next = NULL;//该链表此刻只带头结点
  101. for(int i=1;i<=len;i++) //循环申请len个结点来接收scanf得到的元素
  102. {
  103. LNode *p = (LNode*)malloc(sizeof(LNode)); //生成新结点
  104. scanf("%d",&p->data); //用新申请的结点来接收scanf得到的元素
  105. /* 以下两条语句是尾插法的关键步骤 */
  106. temp->next = p; //用来接纳新结点
  107. temp = p; //指向终端结点,以便于接纳下一个到来的结点,此语句也可以改为"L = L->next"
  108. }
  109. temp->next = NULL; //此刻所有元素已经全装入链表L中,L的终端结点的指针域置为NULL
  110. return (LNode*)L;
  111. }
  112. /*********************************************************************************
  113. * Function Name : Serch, 查找结点
  114. * Parameter : L:链表 elem:所查找的结点的数据域
  115. * Return Value : pos:搜索到的元素的位置 ERROR:elem不在顺序表L中
  116. * Function Explain :
  117. * Create Date : 2018.2.13 by lzn
  118. **********************************************************************************/
  119. int Serch(LNode *L, int elem)
  120. {
  121. LNode *temp = L;
  122. int pos = 0;
  123. int i = 1;
  124. while(temp->next)
  125. {
  126. temp = temp->next;
  127. if(elem==temp->data)
  128. {
  129. pos = i;
  130. printf("The %d position in the list is %d\n",elem,pos);
  131. return pos; //返回elem元素在顺序表中的位置
  132. }
  133. i++;
  134. }
  135. printf("Serch error!\n");
  136. return ERROR; //查找失败
  137. }
  138. /*********************************************************************************
  139. * Function Name : Replace, 替换第pos个位置的元素成elem
  140. * Parameter : L:链表 pos:要替换的位置 elem:要替换的元素
  141. * Return Value : 替换某结点之后生成的新链表
  142. * Function Explain :
  143. * Create Date : 2018.2.13 by lzn
  144. **********************************************************************************/
  145. LNode *Replace(LNode *L, int pos, int elem)
  146. {
  147. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  148. temp = temp->next; //在遍历之前,temp指向开始结点
  149. for(int i=1;i<pos;i++)
  150. {
  151. temp = temp->next;
  152. }
  153. temp->data = elem; //找到要替换的结点并替换其数据域的值为elem
  154. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  155. }
  156. /*********************************************************************************
  157. * Function Name : Insert, 向链表中插入结点
  158. * Parameter : L:链表 pos:要插入的位置 elem:要插入的结点的数据域
  159. * Return Value : 插入新结点之后生成的新链表
  160. * Function Explain :
  161. * Create Date : 2018.2.13 by lzn
  162. **********************************************************************************/
  163. LNode *Insert(LNode *L, int pos, int elem)
  164. {
  165. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  166. int i = 0;
  167. /* 首先找到插入结点的上一结点,即第pos-1个结点 */
  168. while( (temp!=NULL)&&(i<pos-1) )
  169. {
  170. temp = temp->next;
  171. ++i;
  172. }
  173. /* 错误处理:链表为空或插入位置不存在 */
  174. if( (temp==NULL)||(i>pos-1) )
  175. {
  176. printf("%s:Insert false!\n",__FUNCTION__);
  177. return (LNode*)temp;
  178. }
  179. LNode *new = (LNode*)malloc(sizeof(LNode)); //创建新结点new
  180. new->data = elem; //插入的新结点的数据域
  181. new->next = temp->next; //新结点的next指针指向插入位置后的结点
  182. temp->next = new; //插入位置前的结点的next指针指向新结点
  183. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  184. }
  185. /*********************************************************************************
  186. * Function Name : Delete, 删除链表中的结点
  187. * Parameter : L:链表 pos:要删除的位置 elem:被删除的结点的数据域
  188. * Return Value : 删除结点之后生成的新链表
  189. * Function Explain :
  190. * Create Date : 2018.2.13 by lzn
  191. **********************************************************************************/
  192. LNode *Delete(LNode *L, int pos, int *elem)
  193. {
  194. LNode *temp = L; //引入一个中间变量,用于循环变量链表
  195. int i = 0;
  196. /* 首先找到删除结点的上一结点,即第pos-1个结点 */
  197. while( (temp!=NULL)&&(i<pos-1) )
  198. {
  199. temp = temp->next;
  200. ++i;
  201. }
  202. /* 错误处理:链表为空或删除位置不存在 */
  203. if( (temp==NULL)||(i>pos-1) )
  204. {
  205. printf("%s:Delete false!\n",__FUNCTION__);
  206. return (LNode*)temp;
  207. }
  208. LNode *del = temp->next; //定义一个del指针指向被删除结点
  209. *elem = del->data; //保存被删除的结点的数据域
  210. temp->next = del->next; /*删除结点的上一个结点的指针域指向删除结点的下一个结点,
  211. 也可写为“temp->next = temp->next->next”*/
  212. free(del); //手动释放该结点,防止内存泄露
  213. del = NULL; //防止出现野指针
  214. return (LNode*)L; //注意!!不能写为 "return (LNode*)temp;"
  215. }
  216. /*********************************************************************************
  217. * Function Name : PrintfList,打印链表
  218. * Parameter : L:要打印的链表
  219. * Return Value : NULL
  220. * Function Explain :
  221. * Create Date : 2018.2.13 by lzn
  222. **********************************************************************************/
  223. void PrintfList(LNode *L)
  224. {
  225. LNode *temp = L;
  226. int count = 0; //计数器
  227. printf("List:\n");
  228. while(temp->next)
  229. {
  230. temp = temp->next;
  231. printf("%d\t",temp->data);
  232. count++;
  233. if(count%5==0) //每5个元素作为一行
  234. {
  235. printf("\n");
  236. }
  237. }
  238. printf("\n");
  239. }
  240. /*********************************************************************************
  241. * Function Name : MenuSelect,菜单
  242. * Parameter : void
  243. * Return Value : cmd
  244. * Function Explain :
  245. * Create Date : 2018.2.13 by lzn
  246. **********************************************************************************/
  247. int MenuSelect(void)
  248. {
  249. int cmd;
  250. printf("1.Serch test\n");
  251. printf("2.Replace test\n");
  252. printf("3.Insert test\n");
  253. printf("4.Delete test\n");
  254. printf("5.TailCreateList test\n");
  255. printf("6.HeadCreateList test\n");
  256. printf("7.Clear\n");
  257. printf("8.Exit\n");
  258. do
  259. {
  260. printf("Enter your choice: ");
  261. scanf("%d",&cmd);
  262. }while(cmd<0||cmd>8);
  263. return cmd;
  264. }
  265. /* ====================================以下是测试函数============================== */
  266. /*********************************************************************************
  267. * Function Name : Test1, 测试"Serch"函数
  268. * Parameter : L:链表
  269. * Return Value : void
  270. * Function Explain :
  271. * Create Date : 2018.2.13 by lzn
  272. **********************************************************************************/
  273. void Test1(LNode *L)
  274. {
  275. int serchElem = 0; //存储要搜索的元素
  276. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  277. PrintfList(L);
  278. printf("Please input the element you want to serch:");
  279. scanf("%d",&serchElem);
  280. Serch(L,serchElem);
  281. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  282. printf("\n");
  283. }
  284. /*********************************************************************************
  285. * Function Name : Test2, 测试"Replace"函数
  286. * Parameter : L:链表
  287. * Return Value : void
  288. * Function Explain :
  289. * Create Date : 2018.2.13 by lzn
  290. **********************************************************************************/
  291. void Test2(LNode *L)
  292. {
  293. int replacePos = 0, replaceElem = 0; //存储替换的位置,替换的元素
  294. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  295. PrintfList(L);
  296. printf("Please input the position and the element you want replace(example:10,33):");
  297. scanf("%d,%d",&replacePos,&replaceElem);
  298. L = Replace(L,replacePos,replaceElem);
  299. printf("After replace by position,list is:\n");
  300. PrintfList(L);
  301. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  302. printf("\n");
  303. }
  304. /*********************************************************************************
  305. * Function Name : Test3, 测试"Insert"函数
  306. * Parameter : L:链表
  307. * Return Value : void
  308. * Function Explain :
  309. * Create Date : 2018.2.13 by lzn
  310. **********************************************************************************/
  311. void Test3(LNode *L)
  312. {
  313. int insertPos = 0, insertElem = 0; //存储插入的位置,插入的元素
  314. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  315. PrintfList(L);
  316. printf("Please input the position and the element you want insert(example:10,33):");
  317. scanf("%d,%d",&insertPos,&insertElem);
  318. L = Insert(L,insertPos,insertElem);
  319. printf("After insert,list is:\n");
  320. PrintfList(L);
  321. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  322. printf("\n");
  323. }
  324. /*********************************************************************************
  325. * Function Name : Test4, 测试"Delete"函数
  326. * Parameter : L:链表
  327. * Return Value : void
  328. * Function Explain :
  329. * Create Date : 2018.2.13 by lzn
  330. **********************************************************************************/
  331. void Test4(LNode *L)
  332. {
  333. int deletePos = 0; //存储要删除的位置
  334. int elem = NULL;
  335. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  336. PrintfList(L);
  337. printf("Please input the position of the element you want to delete(example:10):");
  338. scanf("%d",&deletePos);
  339. L = Delete(L,deletePos,&elem);
  340. printf("Delete node data is:%d\n",elem);
  341. printf("After delete,list is:\n");
  342. PrintfList(L);
  343. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  344. printf("\n");
  345. }
  346. /*********************************************************************************
  347. * Function Name : Test5, 测试"TailCreateList"函数
  348. * Parameter : void
  349. * Return Value : 初始化成功的链表
  350. * Function Explain :
  351. * Create Date : 2018.2.13 by lzn
  352. **********************************************************************************/
  353. LNode *Test5(void)
  354. {
  355. LNode *L;
  356. int len = 0;
  357. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  358. printf("Please input list length:");
  359. scanf("%d",&len);
  360. L = TailCreateList(len);
  361. PrintfList(L);
  362. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  363. printf("\n");
  364. return (LNode*)L;
  365. }
  366. /*********************************************************************************
  367. * Function Name : Test6, 测试"HeadCreateList"函数
  368. * Parameter : void
  369. * Return Value : 初始化成功的链表
  370. * Function Explain :
  371. * Create Date : 2018.2.13 by lzn
  372. **********************************************************************************/
  373. LNode *Test6(void)
  374. {
  375. LNode *L;
  376. int len = 0;
  377. printf("--------------------%s start!--------------------\n",__FUNCTION__);
  378. printf("Please input list length:");
  379. scanf("%d",&len);
  380. L = HeadCreateList(len);
  381. PrintfList(L);
  382. printf("--------------------%s end!--------------------\n",__FUNCTION__);
  383. printf("\n");
  384. return (LNode*)L;
  385. }

三、参考资料

1、头插法与尾插法

2、C语言中文网数据结构教程

3、链表的操作

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/636634
推荐阅读
相关标签
  

闽ICP备14008679号