
数据结构
飞翔在蓝天
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据结构-线性表操作
1、顺序存储列表#include "stdio.h" #include//#include "stdlib.h" //#include "io.h" //#include "math.h" //#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAX原创 2016-09-05 17:14:50 · 1380 阅读 · 0 评论 -
数据结构-栈与队列
1、顺序队列#include "stdio.h" #include "stdlib.h" //#include "io.h" //#include "math.h" //#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /*原创 2016-09-05 18:10:03 · 458 阅读 · 0 评论 -
数据结构-字符串
1、字符串#include "string.h"#include "stdio.h" #include "stdlib.h" //#include "math.h" //#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 40 /*原创 2016-09-06 16:01:24 · 990 阅读 · 0 评论 -
数据结构-查找
1、静态查找_Search#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 100 /*原创 2016-09-06 16:49:39 · 621 阅读 · 0 评论 -
数据结构-排序
1、七大排序方法#include #include #include #include #include #include #include #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAX_LENGTH_INSERT_SORT 7 /* 用于快速排原创 2016-09-06 16:52:39 · 471 阅读 · 0 评论 -
数据结构-树
1、顺序二叉树的实现#include "stdio.h" #include "stdlib.h" //#include "io.h" #include "math.h" //#include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 100原创 2016-09-06 16:04:12 · 762 阅读 · 0 评论 -
数据结构-图
1、邻接矩阵创建_CreateMGraph#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXVEX原创 2016-09-06 16:05:58 · 955 阅读 · 1 评论