2017-01-25 JustWe
OJ
之前看了一点《C++模版元编程》,今天突然想起来,打算试一下元编程技巧能不能在OJ中使用。 选择了一道简单的有固定范围的题,比较便于用元编程算出所有的解: 题目描述 Description 有一个数n,求小于等于它的所有质数 输入描述 Input Description n 输出描述 Output Description 一行,每两个质数中有一个空格 样例输入 Sample Input 5 样例输出 Sample Output 2 3 5 数据范围及提示 Data Size & Hint 数据很小(计算客的算素数的题的范围是1000) 由于递归次数不能超过256我在中间按照200为一 继续阅读 »
2014-09-11 veryyoung
书籍整理: 程序员面试金典(第5版).pdf http://vdisk.weibo.com/s/D2zXXYpTKPKx 程序员编程艺术— 面试和算法心得pdf版 http://url.cn/M3vj4Z 刷题oj: leetcode http://oj.leetcode.com/problems/ 刷剑指offer http://ac.jobdu.com/hhtproblems.php# Java 内存区域和GC机制 http://www.cnblogs.com/zhguang/p/3257367.html#introduction http://www.ibm.com/developerworks/cn/ja 继续阅读 »
2014-04-29 veryyoung
题目链接: http://oj.leetcode.com/problems/two-sum/ 题目内容: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your return 继续阅读 »
2016-08-20 findneo
C
WHU OJ ,已无法访问 1021乒乓球比赛 ```c include int main() { char i,j,k; for(i='X'; i include int time_elapse(int hour, int minute, int second) { return hour*3600+minute*60+second; } int main() { int n; char t[9],s[9]; int a,b,c,d,e,f; int s1,s2; scanf("%d",&n); for(; n>0; n--) { 继续阅读 »