摘要: 继续看郝斌的数据结构入门视频课, 一起写数据结构的可实现代码. 这次是线性结构离散存储的链表. #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struct Node { int data; //数据域 stru 阅读全文
posted @ 2025-06-08 23:37 鲲特牌 阅读(11) 评论(0) 推荐(0)