摘要: 数据结构 设计一个算法删除单链表L(有头节点)中的最小结点。 /*************************************************************************** * * @name LkListDelMin * @brief 删除单链表中的最小结 阅读全文
posted @ 2025-10-10 15:43 小黄花w 阅读(0) 评论(0) 推荐(0)
摘要: 数据结构-链表 头文件: #include <stdio.h> #include <stdlib.h> #include <stdbool.h> 主函数: //主函数 int main(int argc, const char *argv[]) { LkList_t *LkList = LkList 阅读全文
posted @ 2025-10-10 14:57 小黄花w 阅读(1) 评论(0) 推荐(0)
摘要: 数据结构-顺序表 头文件 #include <stdio.h> #include <stdlib.h> #include <stdbool.h> 主函数 int main(int argc,const char * argv[]) { SeqList_t * Manager = SeqList_Cr 阅读全文
posted @ 2025-10-10 14:41 小黄花w 阅读(1) 评论(0) 推荐(0)