const int MAXSIZE = 10;#define MAX_BUF 10;#include templateclass Queue{ private:T array1[MAXSIZE];int rear;int front;public:void Qpush(const T©);T...
分类:
其他好文 时间:
2015-04-23 12:30:02
阅读次数:
118
#include
using namespace std;
#define MAXSIZE 50
typedef int QueueElementType;
typedef struct
{
QueueElementType elem[MAXSIZE];
int front; //指向当前队头元素
int rear; //指向队尾元素的下一个位置
}...
分类:
编程语言 时间:
2015-04-21 22:45:01
阅读次数:
212
一、准备工作
创建表空间:
create temporary tablespace yangwen_temp
tempfile 'D:\oracle\oradata\orcl\yangwen_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
crea...
分类:
数据库 时间:
2015-04-21 00:28:11
阅读次数:
153
#include#include#define MaxSize 100void ExpIsCorrect(char exp[],int n);typedef char DataType;typedef struct{ DataType stack[MaxSize]; int top;}S...
分类:
其他好文 时间:
2015-04-18 23:43:59
阅读次数:
148
#include#include#define MaxSize 100typedef char DataType;typedef struct{ DataType stack[MaxSize]; int top;}SeqStack;void StackInitiate(SeqStack ...
分类:
其他好文 时间:
2015-04-18 23:43:23
阅读次数:
132
#include#include#define MaxSize 100typedef int DataType;typedef struct{ DataType stack[MaxSize]; int top;}SeqStack;void StackInitiate(SeqStack *...
分类:
其他好文 时间:
2015-04-18 23:30:28
阅读次数:
117
#define _CRT_SECURE_NO_WARNINGS
#include
#define MAXSIZE 10
void Add(char a[], char b[], char c[]);
void Sub(char a[], char b[], char c[]);
int Get_len(char a[]);
bool Max_a(char a[], char b[]);...
分类:
编程语言 时间:
2015-04-18 20:39:25
阅读次数:
228
#include #include #include #define MaxSize 50typedef struct{ int data[MaxSize]; int length;}SqList;void ListInsert(SqList *L,int i,int e){ in...
分类:
其他好文 时间:
2015-04-18 11:15:41
阅读次数:
73
--创建普通表空间create tablespace ha_wxzj_data datafile 'c:\app\administrator\oradata\orcl\ha_wxzj_data.dbf' size 1000m autoextend on next 32m maxsize 10000m...
分类:
其他好文 时间:
2015-04-17 17:14:02
阅读次数:
176
头文件:using ElementType = int;
#define MaxSize 100
struct SeqList{
ElementType data[MaxSize];
int length; /*the size of the seqlist */
};
using PtrList = SeqList*;
using Position = int;
using Le...
分类:
其他好文 时间:
2015-04-16 12:27:17
阅读次数:
213