链表基本应用 链表创建 链表插入 链表删除 链表修改 链表查询 链表反转 完整代码 截图 链表创建 typedef struct Node { int data; struct Node *next; }Node; Node *CreateNode() { Node *head=malloc(siz Read More
posted @ 2022-05-31 13:04 xMonody Views(30) Comments(0) Diggs(0) Edit