代码如下:
#include
int factor[3][4] =
{
{0, 1, 2, 3},
{0, 1},
{0, 1, 2},
};
int lengths[3] = {4, 2, 3};
void recurisionAccess(int factor[3][4], int lengths[4], int co...
分类:
编程语言 时间:
2014-10-29 19:27:30
阅读次数:
272
水题,晒一遍素数并标注就OK了。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x7fffffff
#define eps 1e-8
#define LL long long...
分类:
其他好文 时间:
2014-10-23 12:33:57
阅读次数:
136
Largest prime factor
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 7009 Accepted Submission(s): 2482
Problem Description
Every...
分类:
其他好文 时间:
2014-10-13 13:10:47
阅读次数:
207
Hash表(Hash Table)
hash表实际上由size个的桶组成一个桶数组table[0...size-1] 。当一个对象经过哈希之后,得到一个相应的value , 于是我们把这个对象放到桶table[ value ]中。当一个桶中有多个对象时,我们把桶中的对象组织成为一个链表。这在冲突处理上称之为拉链法。
负载因子(load factor)
...
分类:
其他好文 时间:
2014-10-10 00:57:33
阅读次数:
3011
输入a b 求有多少对p, q 使得p*q == a && p = b
直接大整数分解 然后dfs搜出所有可能的解
#include
#include
#include
#include
#include
using namespace std;
typedef long long LL;
const int Times = 25;
LL factor[100], f[100];
i...
分类:
其他好文 时间:
2014-10-09 16:07:38
阅读次数:
179
编程之美2.4n=12时,1,11,12这3个数包含1,所以1的个数是5.Line 9是为了防止factor溢出。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int countOne(int n) { 7 ...
分类:
其他好文 时间:
2014-09-30 00:51:01
阅读次数:
283
想要了解最新的学术研究动态,时刻track顶级的会议,顶级的workshop,顶级的researcher都是必要的。
下面就是参考别人的表格,自己汇总的一个表格,根据会议的CIF( Conference Impact Factor )进行排列,不一定权威。将不定期更新
RK
Conference
Describe
Lasted updated...
分类:
其他好文 时间:
2014-09-27 23:03:30
阅读次数:
355
Matlab Toolbox for Dimensionality Reduction降维方法包括:Principal Component Analysis (PCA)?Probabilistic PCA?Factor Analysis (FA)?Sammon mapping?Linear Disc...
分类:
其他好文 时间:
2014-09-25 12:20:28
阅读次数:
585
Invalid asset name supplied: , or invalid scale factor: 2.000000错误解决方法:
错误原因:在ios7中设置imageView的image时,实例化image时不能传nil,(cell.imageView.image = [UIImage imageNamed:nil] 上图所报的错,就是因为这句话)。
在ios6中,这...
分类:
其他好文 时间:
2014-09-24 19:59:37
阅读次数:
203
#include
#include
#include
#include
using namespace std;
typedef __int64 LL;
const int Times = 20;
LL factor[100], l;
LL gcd(LL a, LL b)
{
return b ? gcd(b, a%b):a;
}
LL add_mod(LL a, LL b, LL n)...
分类:
其他好文 时间:
2014-08-30 20:28:20
阅读次数:
285