数据结构
big军哥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言实现线性表链式存储结构
C语言实现线性表链式存储结构 #include <stdio.h> #include <iostream> #define MAXSIZE 10 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; using namespace std; typedef struct LNode { int data; struct LNode *next; } LNode, *LinkList;原创 2021-05-06 17:12:46 · 457 阅读 · 0 评论 -
C语言实现线性表顺序存储结构
C语言实现线性表顺序存储结构 #include <stdio.h> #include <iostream> #define MAXSIZE 10 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int Status; using namespace std; typedef struct { int number; } Polynomial; typedef struct { Polynomial *e原创 2021-05-06 17:10:31 · 517 阅读 · 0 评论
分享