2021年7月18日
摘要: #include<stdio.h> #include<stdlib.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList; //尾插法 LinkList L 阅读全文
posted @ 2021-07-18 20:00 upupup-999 阅读(71) 评论(0) 推荐(0) 编辑