码迷,mamicode.com
首页 >  
搜索关键字:maxsize    ( 995个结果
二叉树的顺序结构
#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...
分类:其他好文   时间:2015-07-09 00:37:57    阅读次数:109
线性表-顺序存储
#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 /* 存储空间初始分配量 */ typedef in...
分类:其他好文   时间:2015-07-07 19:27:39    阅读次数:86
稀疏矩阵操作(三元组表示法)
#include #include #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 100typedef int Status;typedef float ElemType;typedef struct{...
分类:其他好文   时间:2015-07-07 14:23:57    阅读次数:168
顺序栈
#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 20 /* 存...
分类:其他好文   时间:2015-07-07 12:49:25    阅读次数:114
顺序表
#include#include#include#include#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 //存储空间初始分配量typedef int Status; //函数的类型typed...
分类:其他好文   时间:2015-07-07 12:44:06    阅读次数:136
链式队列
#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 20 /* 存...
分类:其他好文   时间:2015-07-07 12:43:41    阅读次数:84
循环队列
#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 20 /* 存...
分类:其他好文   时间:2015-07-07 12:32:00    阅读次数:124
排序算法
//将数组和它的长度封装成一个结构体#define MAXSIZE 10 //由于r[0]用作哨兵,所以只能存放MAXSIZE-1个元素typedef struct{ int r[MAXSIZE]; //r[0]用作哨兵或临时变量 int length;}SqList;void swap(Sq...
分类:编程语言   时间:2015-07-06 01:25:35    阅读次数:131
各种排序算法的实现代码
#include"stdio.h" #include"malloc.h" #include"stdlib.h" typedef int KeyType; #define MAXSIZE 20 typedef struct { KeyType key; }RedType; typedef struct { RedType r[MAXSIZE+1]; int length; }SqList,* SQLIST; void play_choose(void);//显示菜单 void creat_li...
分类:编程语言   时间:2015-07-03 23:31:25    阅读次数:454
Oracle建立用户表空间
create temporary tablespace data_temp tempfile 'D:\tablespace\data_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local...
分类:数据库   时间:2015-07-03 15:33:22    阅读次数:159
995条   上一页 1 ... 73 74 75 76 77 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!