粗心小兔子

文章
4
资源
0
加入时间
2年10月24天

C语言-数据结构-插入

#include #include struct node{    int date;    struct node *next;};struct node* creattable(int n)///n节点个数{    int i,a;    struct node *head,*p1,*p2;    head = NULL;  ///头结点为空