摘要: 1.定义一个双链表 #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElemType; /* 定义一个单链表 */ typedef struct DNode { /*数据域*/ ElemType data 阅读全文
posted @ 2024-07-08 00:31 成强 阅读(9) 评论(0) 推荐(0) 编辑