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; ///头结点为空 C语言-数据结构 2023-08-30 40 点赞 0 评论 60 浏览