摘要: #include <stdio.h> #include <stdlib.h> struct node {//链表结点类型,包含一个存放整型数据的 data 成员,和一个指向下一个结点的next成员 int data ; struct node *next ; }; struct node *mycr 阅读全文
posted @ 2020-11-01 17:11 ethon-wang 阅读(965) 评论(0) 推荐(1) 编辑