1. 首页
  2. 课程学习
  3. C++/C
  4. 单链表的拆分

单链表的拆分

上传者: 2020-08-19 01:25:05上传 C文件 1.44KB 热度 14次
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
下载地址
用户评论