摘要: 原文:http://blog.csdn.net/cxf7394373/article/details/7195661 阅读全文
posted @ 2015-12-07 09:59 Sindyang 阅读(3748) 评论(0) 推荐(0) 编辑
摘要: 给定K个整数组成的序列{ N1, N2, ..., NK },“连续子列”被定义为{ Ni, Ni+1, ..., Nj },其中 1 using namespace std;int main() { int i; int j; int K; int sum = 0; ... 阅读全文
posted @ 2015-06-07 00:15 Sindyang 阅读(374) 评论(0) 推荐(0) 编辑
摘要: Shuffling is a procedure used to randomize a deck of playing cards. Because standard shuffling techniques are seen as weak, and in order to avoid "ins... 阅读全文
posted @ 2015-06-05 23:12 Sindyang 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 2469135... 阅读全文
posted @ 2015-06-05 10:34 Sindyang 阅读(412) 评论(0) 推荐(0) 编辑
摘要: 一个数组A中存有N(N>0)个整数,在不允许使用另外数组的前提下,将每个整数循环向右移M(M>=0)个位置,即将A中的数据由(A0 A1……AN-1)变换为(AN-M …… AN-1 A0 A1……AN-M-1)(最后M个数循环移至最前面的M个位置)。如果需要考虑程序移动数据的次数尽量少,要如何设计... 阅读全文
posted @ 2015-06-05 09:43 Sindyang 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 让我们定义 dn 为:dn = pn+1 - pn,其中 pi 是第i个素数。显然有 d1=1 且对于n>1有 dn 是偶数。“素数对猜想”认为“存在无穷多对相邻且差为2的素数”。现给定任意正整数N ( 2 #include 3 using namespace std; 4 bool isPrime... 阅读全文
posted @ 2015-06-04 18:53 Sindyang 阅读(154) 评论(0) 推荐(0) 编辑