码迷,mamicode.com
首页 >  
搜索关键字:maxsize    ( 995个结果
数据库的创建
数据库的创建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
SQL命令
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
hdu 1711 Number Sequence(kmp)
题意:裸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
hdu 1358 Period(kmp)
题意:统计单串中从某个位置以前有多少重复的串思路:kmp模板#include#include#includeusing namespace std;#define MaxSize 1000005char str[MaxSize];int next2[MaxSize];void GetNext(cha...
分类:其他好文   时间:2015-08-14 13:31:25    阅读次数:189
_DataStructure_C_Impl:基数排序
#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:SeqListBasedSort
// _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
PHP多文件上传类
setSavepath($savePath); $this->setFileformat($fileFormat); $this->setMaxsize($maxSize); $this->setOverwrite($overwrite); $...
分类:Web程序   时间:2015-08-13 11:57:58    阅读次数:149
_DataStructure_C_Impl:在顺序表中查找元素
// _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算法求最短路径
// _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
_DataStructure_C_Impl:Floyd算法求有向网N的各顶点v和w之间的最短路径
#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
995条   上一页 1 ... 67 68 69 70 71 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!