#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
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