摘要: #include<stdio.h> #include<stdlib.h> #define maxn 110000 typedef struct Node* LNode; struct Node { LNode next; int data; }; //初始化//带有头节点的链表 LNode Crea 阅读全文
posted @ 2021-03-28 11:08 Joelin12 阅读(65) 评论(0) 推荐(0)
摘要: #include<stdio.h> #define maxn 110000 struct Node { int Data[maxn]; int last; }; typedef struct Node* LNode; //初始化 LNode Creat() { LNode lis; lis=(LNo 阅读全文
posted @ 2021-03-28 10:24 Joelin12 阅读(54) 评论(0) 推荐(0)