由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 有几题比较有意思的题,希望大家能给些思路。
相关主题
what is the internal implementation of Deque又一道linkedin题
A Simple Question on Binary Search问道题目 Map的iterator
how to query in the universal hash table?问一道题(9)
求教一个onsite面试题目一道Iterator题
amazon question如何判断两个BST的元素是一样的?
Amazon二面hashmap和hashtable的区别?
问一下STL里的queue, and stack 遍历的问题请教一道面试题
问一道F家面试题请教一道LinkedIn面试的经典题
相关话题的讨论汇总
话题: search话题: factor话题: start话题: opt话题: planar
进入JobHunting版参与讨论
1 (共1页)
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 的大作中提到】
:
: 嗯,好像是一种思路。

1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一道LinkedIn面试的经典题amazon question
请教一道数据结构的设计题Amazon二面
大量数据里面找top 100问一下STL里的queue, and stack 遍历的问题
问个anagram的题目啊问一道F家面试题
what is the internal implementation of Deque又一道linkedin题
A Simple Question on Binary Search问道题目 Map的iterator
how to query in the universal hash table?问一道题(9)
求教一个onsite面试题目一道Iterator题
相关话题的讨论汇总
话题: search话题: factor话题: start话题: opt话题: planar