码迷,mamicode.com
首页 >  
搜索关键字:maxsize    ( 995个结果
模板实现循环队列
const int MAXSIZE = 10;#define MAX_BUF 10;#include templateclass Queue{ private:T array1[MAXSIZE];int rear;int front;public:void Qpush(const T&copy);T...
分类:其他好文   时间:2015-04-23 12:30:02    阅读次数:118
循环队列(C语言版)
#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
Oracle数据库导入导出
一、准备工作 创建表空间: 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
大数加减法 C语言 包含负数
#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
995条   上一页 1 ... 79 80 81 82 83 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!