2021
07-22
07-22
C语言编写一个链表
本文实例为大家分享了C语言编写一个链表的具体代码,供大家参考,具体内容如下链表具备的基本功能:1.创建头链表structNode*Creatlist(){//创建链表头structNode*headnode=(structNode*)malloc(sizeof(structNode));//创建动态内存链表,指针变量headnode->next=NULL;//链表初始化returnheadnode;}2.创建节点structNode*Creatnode(intnum){//创建结点,链表,参数数字域structNode*newnode=(structNode*)mal...
继续阅读 >