摘要: 本篇文章的代码大多使用无头结点的单链表: 相关定义: #include <stdio.h> #include <stdlib.h> #include <assert.h> typedef int DataType; typedef struct Linklist{ LDataType data; s 阅读全文
posted @ 2021-03-23 19:23 吃心王 阅读(1076) 评论(0) 推荐(0)