单链表的拆分

grj82199 11 0 C 2020-08-19 01:08:05

C语言代码参考,单链表的拆分 #include #include struct node { int data; struct node * next; }; struct node * creat(int n) { struct node * head,* p; head=(struct node *)malloc(sizeof(struct node)); head->next=NULL; int i; for(i=1;i

用户评论
请输入评论内容
评分:
暂无评论