c链表
Posted zenglingbing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c链表相关的知识,希望对你有一定的参考价值。
一、单项链表的实现
|
||
1.建立一个节点
1 # include <stdio.h> 2 # include <stdlib.h> 3 # include <string.h> 4 # pragma warning(disable:4996) 5 6 struct list 7 { 8 int data; //数据域 9 struct list *next; //指针域,指向下一个节点的地址 10 }; 11 12 //struct list *create_list2() //建立一个节点 13 //{ 14 // struct list *p = (struct list *)malloc(sizeof(struct list)); 15 // p->data = 0; 16 // p->next = NULL; 17 // return p; 18 //} 19 20 struct list *create_list()//建立一个节点 21 { 22 return calloc(sizeof(struct list), 1); 23 } 24 25 int main() 26 { 27 struct list *first = create_list();//创建链表的首节点 28 struct list *second = create_list();//创建下一个节点 29 struct list *third = create_list(); //创建下一个节点 30 31 first->next = second; 32 second->next = third; 33 34 free(second); //删除第二个节点 35 first->next = third;//删除之后得让第一个指向第三个 36 37 38 system("pause"); 39 return 0; 40 }
以上是关于c链表的主要内容,如果未能解决你的问题,请参考以下文章
NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段