摘要: ###单链表的基本操作 /#include <stdio.h> /#include <stdlib.h> /#include <malloc.h> typedef struct LNode{ int data; struct LNode *next; }LNode, *LinkList; //初始化 阅读全文
posted @ 2021-04-21 23:39 哇塞6 阅读(293) 评论(0) 推荐(0) 编辑