摘要: #include "stdio.h" #include "stdlib.h" typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode* next; }LNode,*LinkList; //不带头结点 void s 阅读全文
posted @ 2021-09-15 20:12 #Lorraine# 阅读(43) 评论(0) 推荐(0) 编辑