码迷,mamicode.com
首页 > 其他好文 > 详细

C数据结构获取链表长度

时间:2019-05-07 01:12:13      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:printf   klist   int   lis   size   return   结构   next   数据结构   

int getListLength(LinkList*list)
{
int n=0;
LinkList*p=list;
while(p->next!=NULL)
{
n++;
p=p->next;
}
printf("链表长度为:%d\n\n",n);
return n;
}
//建立节点
LinkList *createNode()
{
LinkList *node=(LinkList*)malloc(sizeof(LinkList));
node->next=NULL;
return node;
}

C数据结构获取链表长度

标签:printf   klist   int   lis   size   return   结构   next   数据结构   

原文地址:https://www.cnblogs.com/ruanwuyinbiao/p/10823050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!