一种单向链表的实现 2021-03-21 数据结构 暂无评论 723 次阅读 一种单向链表的实现赶了个单向链表,写吐了。前插还没写以后补吧。有些功能还没测试#include <stdio.h> #include <stdint.h> #include <stdlib.h> #define ok 1 #define err -1 #define ONE_LIST_DATA_SIZE 16 //#define LOG //链表数据结构体 - 阅读全文 -