i*********7 发帖数: 348 | 1 1. Start iterating through the elements of a hash table in a random order.
Make sure all orders are equally likely.
11. Start with a planar graph input. Compute its planar dual.
10. Search through a tremendous number of elements is a search space. I.E.
You're asked to design a storage structure and search algorithm to search
through 100 billion data records. You can have multiple servers and multiple
threads.(这题用thread是什么思路?)
12. What is the largest prime factor of the number 600851475143 ? Write code.
========================================================
另外还有一个关于签证的问题求证一下。我现在是挂OPT挂在一个朋友的公司里,挂的
是Intern,然后我现在还在找full time. 但是我的OPT明年2月13日到期。
简单来说,是不是现在对于我来说,不是e-verify的公司就算有offer我也最多只能工
作到明年2月13号然后停职等H1B?(前提是那个公司愿意这么做。) |
l****c 发帖数: 782 | 2 看到12了,这样做好不好?
int factor = 1;
while(n!=1) {
factor++;
while(n%factor!=0) n/=factor;
}
return factor; |
i*********7 发帖数: 348 | 3
嗯,好像是一种思路。
【在 l****c 的大作中提到】 : 看到12了,这样做好不好? : int factor = 1; : while(n!=1) { : factor++; : while(n%factor!=0) n/=factor; : : } : return factor;
|
l****c 发帖数: 782 | 4 这个你给的测试数太大了,怎么办呢?
【在 i*********7 的大作中提到】 : : 嗯,好像是一种思路。
|