Leading-Edge Java Design Principles from Design Patterns A Conversation with Erich Gamma, Part III by Bill Venners June 6, 2005 Erich Gamma lept onto the software world stage in 1995 as co-author o...
分类:
其他好文 时间:
2014-09-15 18:00:59
阅读次数:
291
题意:给出编译规则,求是否满足条件 A:= '(' B')'|'x'.B:=AC.C:={'+'A}.其中{}表示里面的内容可以出现0次或者多次注意点见代码注释 1 #include 2 #include 3 #include 4 const int maxn = 205; 5 6 int...
分类:
其他好文 时间:
2014-09-11 23:47:02
阅读次数:
257
抄自http://beyondvincent.com/blog/2014/03/17/five-tips-for-using-self-signed-ssl-certificates-with-ios/ios7以后,inhouse安装需要ssl了,一般用商用的,不想用商用的,就自己弄一个,通过ope...
分类:
移动开发 时间:
2014-09-04 14:40:09
阅读次数:
232
/*
Write a program that prints the numbers from 1 to 100,but for multiples of three print “Fizz” instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of...
分类:
其他好文 时间:
2014-09-03 11:19:16
阅读次数:
221
Five ways for tracing Java executionI'm often faced with a situation where I need to dig into code that I didn't write. Most of it is poorly documente...
分类:
编程语言 时间:
2014-09-03 09:31:16
阅读次数:
390
http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1173
纯模拟,按步骤一个个来 判断就行。
#include
#include
int main()
{
//freopen("a.txt","r",stdin);
char map[10][10];
int t,i,j,s1,s2;
...
分类:
其他好文 时间:
2014-09-02 14:17:24
阅读次数:
212
laravel-validation ================== - 异常化表单验证 --- > 合理的利用异常化编程方法,可以使代码可维护性大幅提高。 ## 使用前的准备 在 composer.json 文件中申明依赖: ```json "five-say/laravel-vali...
分类:
其他好文 时间:
2014-08-30 19:15:30
阅读次数:
252
其实一道公式题:n!中素数i的幂为:[n/i]+[n/i^2]+[n/i^3]+[n/i^4]+......#include #include #include using namespace std;long long n;int main(){ long long two,five; int t...
分类:
其他好文 时间:
2014-08-28 09:38:59
阅读次数:
131
Dragon Balls
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3242 Accepted Submission(s): 1250
Problem Description
Five hundred ...
分类:
其他好文 时间:
2014-08-27 10:57:37
阅读次数:
233
In one well-known algorithm of finding the k-th order statistics we should divide all elements into groups of five consecutive elements and find the median
of each five. A median is called the middl...
分类:
其他好文 时间:
2014-08-25 22:50:55
阅读次数:
297