数据库的创建CREATE DATABASE database_nameON PRIMARY(NAME=logical_file_name,filename='os_file_name',SIZE=size,MAXSIZE=maxsize,FILEGROWTH=growth_increment)--F...
分类:
数据库 时间:
2015-08-17 00:35:34
阅读次数:
195
1 CREATE DATABASE datebase_name 2 ON PRIMARY 3 (NAME=Orders_dat, 4 FILENAME='D:\数据库\2008\DATA\20150816.mdf', 5 SIZE=10, 6 MAXSIZE=50, 7 FILEGROWTH=5%....
分类:
数据库 时间:
2015-08-16 10:42:43
阅读次数:
194
题意:裸kmp思路:kmp模板#include#include#includeusing namespace std;#define MaxSize 10005int s[1000005],t[10005];int next2[MaxSize];void GetNext(int t[],int le...
分类:
其他好文 时间:
2015-08-14 13:37:05
阅读次数:
109
题意:统计单串中从某个位置以前有多少重复的串思路:kmp模板#include#include#includeusing namespace std;#define MaxSize 1000005char str[MaxSize];int next2[MaxSize];void GetNext(cha...
分类:
其他好文 时间:
2015-08-14 13:31:25
阅读次数:
189
#include
#include
#include
#include
#define MaxNumKey 6 /*关键字项数的最大值*/
#define Radix 10 /*关键字基数,此时是十进制整数的基数*/
#define MaxSize 1000
#define N 6
typedef int KeyType; /*定义关键字类型*/
typedef struct
{
KeyType...
分类:
编程语言 时间:
2015-08-14 06:32:17
阅读次数:
187
// _DataStructure_C_Impl:Sort
#include
#include
#define MaxSize 50
typedef int KeyType;
//数据元素类型定义
typedef struct{
KeyType key; //关键字
}DataType;
//顺序表类型定义
typedef struct{
DataType data[MaxSize];
in...
分类:
其他好文 时间:
2015-08-14 01:06:02
阅读次数:
161
setSavepath($savePath); $this->setFileformat($fileFormat); $this->setMaxsize($maxSize); $this->setOverwrite($overwrite); $...
分类:
Web程序 时间:
2015-08-13 11:57:58
阅读次数:
149
// _DataStructure_C_Impl:Search
#include
#include
#define MaxSize 100
#define IndexSize 20
typedef int KeyType;
//元素的定义
typedef struct{
KeyType key;
}DataType;
//顺序表的类型定义
typedef struct{
DataType li...
分类:
其他好文 时间:
2015-08-13 06:30:43
阅读次数:
111
// _DataStructure_C_Impl:Dijkstra
#include
#include
#include
typedef char VertexType[4];
typedef char InfoPtr;
typedef int VRType;
#define INFINITY 100000 //定义一个无限大的值
#define MaxSize 50 //最大顶点个数
typ...
分类:
编程语言 时间:
2015-08-12 06:46:12
阅读次数:
164
#include
#include
#include
typedef char VertexType[4];
typedef char InfoPtr;
typedef int VRType;
#define INFINITY 100000 //定义一个无限大的值
#define MaxSize 50 //最大顶点个数
typedef int PathMatrix[MaxSize][MaxSi...
分类:
编程语言 时间:
2015-08-12 06:44:01
阅读次数:
188