
数据结构
drzdryse
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言 单链表的基本运用
#include <stdio.h> #include <stdlib.h> #include <windows.h> // 单链表的基本运用 typedef struct Struct6_student { int score; struct Struct6_student *next; } Struct6List; // 打印单链表 v...原创 2019-10-01 23:18:11 · 226 阅读 · 0 评论 -
C语言 双向链表的基本运用
#include <stdio.h> #include <stdlib.h> #include <windows.h> // 双向链表的基本运用 typedef struct Struct7Tag { int num; // 数据 struct Struct7Tag *last; // 前驱地址 struct Struct7Tag *...原创 2019-10-04 00:59:27 · 403 阅读 · 0 评论