// 斐波那契查找.cpp
#include
#include
using namespace std; const int max_size=20;//斐波那契数组的长度 /*构造一个斐波那契数组*/
void Fibonacci(int * F)
{
F[0]=0;...
分类:
其他好文 时间:
2015-06-21 09:30:24
阅读次数:
245
Php相关配置 – 基础max_execution_time = 30max_input_time = 60memory_limit = 128Mmax_input_vars = 1000register_globals = Offpost_max_size = 8Mmagic_quotes_gpc...
分类:
Web程序 时间:
2015-06-12 16:54:31
阅读次数:
116
提示这种错误的原因是服务器上传的最大为2m要调一下phpini里面修改2个文件把2改成20php文件的上传还受下面设置的影响post max size =8M //post最大能传8m把8改成80来自为知笔记(Wiz)
分类:
Web程序 时间:
2015-06-07 18:45:31
阅读次数:
126
#include #include #include #include #include //#include static gint repeats = 2; static gint max_size = 8; static gboolean verbose...
分类:
其他好文 时间:
2015-05-26 18:40:16
阅读次数:
280
方法一,设置php.ini: vi?./php.ini
file_uploads?????on
upload_max_filesize?=?150M
post_max_size?=?200M
#若是比较大的sql文件,还需要设置一下:
max_execution_time????300?????#每个...
分类:
数据库 时间:
2015-05-13 17:17:48
阅读次数:
173
// 位段大小的计算以及宏的应用
#include
#include
#define MAX_SIZE A+B
struct _Record_Struct
{
unsigned char Env_Alarm_ID : 4;
unsigned char Paral : 2;
unsigned char state;
unsigned char avail : 1;
}*Env_Ala...
分类:
编程语言 时间:
2015-05-08 18:10:28
阅读次数:
225
--RMAN-06061处理
--例行进行数据库备份检查的时候发现一个库的备份状态是completed with errors
--所以进到操作系统进行查看,发现全备日志中出现了如下的告警
archived log /opt/oracle/cisdb/archdb1/bak/cisdb2_127732_673050541.arc not found or out of sync with c...
分类:
其他好文 时间:
2015-05-07 16:56:32
阅读次数:
155
方法一:找到php.ini搜索这3个地方 upload_max_filesize , memory_limit 和 post_max_size将他们后面的值修改成大于你需要导入的数据库大小就好了。然后重启的PHP环境.方法二:以phpMyAdmin-3.1.0-all-languages为例,我的安...
分类:
Web程序 时间:
2015-05-06 10:53:46
阅读次数:
180
欢迎指出代码不足
参考书本:严蔚敏《数据结构 .C语言版》
// RadixSort.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#define MAX_SIZE 1000//最大空间
#define RADIX 10//关键字基数
#define KEY_NUM 3//关键字个数
struct SLNode{//静态链表节点
int key...
分类:
编程语言 时间:
2015-05-04 12:04:48
阅读次数:
226
// HeapSort.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include
#define LIST_MAX_SIZE 100
//顺序表
struct sqList{
int base[LIST_MAX_SIZE];
int len;
};
typedef sqList Heap;//顺序表作为堆排序的基本类型
//初始化顺序表
...
分类:
编程语言 时间:
2015-05-03 09:19:53
阅读次数:
146