1. copy standby control file from primary db to standby db and rename the file name and location in stdby db same as the primary db2. copy password fi...
分类:
数据库 时间:
2014-08-31 15:48:51
阅读次数:
382
#include #include #include #include using namespace std; int n,M=9973;struct Matrax { int m[15][15];}; Matrax a,per; void initial(){ int i,j; ...
分类:
其他好文 时间:
2014-08-30 23:03:20
阅读次数:
236
水题,结果MOD 10000#include #include using namespace std;int n=2,M=10000;struct Matrax { int m[35][35];}; Matrax a,per; void initial(){ int i,j; f...
分类:
其他好文 时间:
2014-08-30 21:41:50
阅读次数:
268
今天捣鼓了下怎么用python来处理json文件。只能说json太强大,python太牛逼。1.json文件的格式。我处理的json文件的格式,是那种contains json per line,所以没办法一次性导入,所以网上找到的方法不适用,后来在stackoverflow上找到了这个(http:...
分类:
编程语言 时间:
2014-08-30 17:46:19
阅读次数:
220
树形DP。。。
B. Appleman and Tree
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
Appleman has a ...
分类:
移动开发 时间:
2014-08-30 15:11:29
阅读次数:
246
每次只把短的部分往长的部分折叠,直接用树状数组爆搞就可以了。
每次长度都缩小一些暴力的复杂度不是太高,启发式暴力????
C. Appleman and a Sheet of Paper
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standa...
分类:
移动开发 时间:
2014-08-30 15:11:21
阅读次数:
275
total_rows == 0 OR $this->per_page == 0) { return ''; } // Calculate the total number of pages $num_pages = ceil($this->total_rows / ...
分类:
其他好文 时间:
2014-08-28 18:03:15
阅读次数:
354
产品每次发布,都需要打很多渠道的包。之前用per脚本打包,后来添加了自定义空间属性后,就不能打了。Ant脚本打包又嫌麻烦,引用的工程太多。最后想到一个办法就是反编译。原理:每个渠道的包只有AndroidManifest.xml文件中渠道的ID不一样。所以反编译APK后,修改AndroidManife...
分类:
移动开发 时间:
2014-08-28 17:58:55
阅读次数:
254
最近参与的项目进行了一次优化技改,对其中SQL参数化公用方法进行了改造。又因项目组人员调整,接受其他模块。针对这次改造,自己负责的模块都要测试到底。 然后再测试过程发现,一个针对日期分组计算的SQL报错,...
分类:
数据库 时间:
2014-08-28 09:52:29
阅读次数:
286
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the following unique per...
分类:
其他好文 时间:
2014-08-27 21:55:38
阅读次数:
242