数据结构
文章平均质量分 68
霸道厂长爱上你
这个作者很懒,什么都没留下…
展开
-
数据结构——————链表
#include<stdio.h>#include<malloc.h>#include<windows.h>#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#define LIST_INIT_SIZE ...原创 2018-03-17 10:30:34 · 280 阅读 · 0 评论 -
数据结构——————栈
#include<stdio.h>#include<malloc.h>#include<windows.h>#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#define STACK_INIT_SIZE...原创 2018-03-18 23:20:59 · 230 阅读 · 0 评论 -
数据结构————————————二叉查找树
# include <stdio.h># include <malloc.h># include <Windows.h>//预定常量和类型# define TURE 1# define FALSE 0# define OK 1# define ERROR 0 # define OVERFLOW -2typedef int Status;typ...原创 2018-03-25 23:02:40 · 159 阅读 · 0 评论