摘要: #include <stdio.h> #include <malloc.h> struct node { int date; struct node *next; }; int main() { struct node a,b,c,*head,*p; a.date=1; b.date=2; c.da 阅读全文
posted @ 2022-04-24 21:51 xxj112 阅读(20) 评论(0) 推荐(0)