摘要:
目录 主函数 创建链表(有表头) 增(头插、尾插、前插、后插) 删(删指定结点、删除头结点外的结点、全部删除) 查(查指定结点、查所有) 改(排序、改指定结点) 完整代码 主函数 #include <stdio.h> #include <stdlib.h> struct hnode { int nu 阅读全文
posted @ 2022-02-17 21:43
慧茗子
阅读(36)
评论(0)
推荐(0)
摘要:
目录 主函数 创建链表 增 删 改 查 完整代码 主函数 #include <stdio.h> #include <stdlib.h> #define MALLOC_OK 1 #define MALLOC_NO 0 #define CREATE_OK 1 #define CREATE_NO 0 st 阅读全文
posted @ 2022-02-17 21:41
慧茗子
阅读(12)
评论(0)
推荐(0)
浙公网安备 33010602011771号