由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一个Google Interview问题
相关主题
Interview questions: points lie on same line问一个EPI(elements of programming interviews)里的题
CS interview question请教一个phone interview 问题
找工作总结(CS)google 面经
二维平面6000点,求穿过最多点的线请教:C# or .Net Developer interview 会不会涉及算法和数据结构方面的问题?
讨论一下给定平面上n点,求在同一直线上最多点问题~~大家用double /float 类型作hash key么Amazon 电面面经,下周onsite,求bless
弱弱的问问hash, hashtable?大家有没有经历过interviewer出错的时候?
被recruiter问到的2个基础题电话面试怎么判断结果好坏啊?我到现在也不会自我评估。
求推荐面试书找工作求推荐,最好是湾区
相关话题的讨论汇总
话题: google话题: interview话题: solution话题: hash话题: pair
进入JobHunting版参与讨论
1 (共1页)
T*****8
发帖数: 119
1
Given a seria of points (Xi, Yi), find the line containing the highest
number of points from the list.
我反正没有好的方法
t*********h
发帖数: 941
2
O(n^2)?

【在 T*****8 的大作中提到】
: Given a seria of points (Xi, Yi), find the line containing the highest
: number of points from the list.
: 我反正没有好的方法

T*****8
发帖数: 119
3
we can find a solution with O(n^2). Is there a better solution?
l***i
发帖数: 1309
4
O(n^2) how?
m****v
发帖数: 84
5
O(n^2 * logn) ?
T*****8
发帖数: 119
6
for each pair of nodes, computer (a, b) and save it in harshtable... Count (
a, b)
e***s
发帖数: 799
7
就是两两求斜率,放到hashmap计数吗? O(n^2)
l***i
发帖数: 1309
8
curious, what is your hash function? And how do you know the number of
collision is O(1)
g*********e
发帖数: 14401
9
for each pair, compute y=kx+b -> k, b, hash key is (k,b) pair, hash value is
node(s).
Y**3
发帖数: 21
10
这个就是Hough transform 嘛
1 (共1页)
进入JobHunting版参与讨论
相关主题
找工作求推荐,最好是湾区讨论一下给定平面上n点,求在同一直线上最多点问题~~大家用double /float 类型作hash key么
A Google question弱弱的问问hash, hashtable?
careercup书上一道题:判断直线相交被recruiter问到的2个基础题
MS bing onsite面经求推荐面试书
Interview questions: points lie on same line问一个EPI(elements of programming interviews)里的题
CS interview question请教一个phone interview 问题
找工作总结(CS)google 面经
二维平面6000点,求穿过最多点的线请教:C# or .Net Developer interview 会不会涉及算法和数据结构方面的问题?
相关话题的讨论汇总
话题: google话题: interview话题: solution话题: hash话题: pair