由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一道google题(from careercup)
相关主题
问一个小于X距离的问题bit manipulation 小题
CareerCup 上一道老题再问一道老题
问一道google面试题(from careercup)find missing numbersin given billion number
FB的k-d tree面试题Ask a amazon question from careercup.
再讨论一个面试难题问下careercup上的这一题
Google 面试题 一道看到一个题目
bloomberg面试经历转行专业选择 Medical Statistics vs Clinical Research Coord (转载)
One question on Careercup问一道Uber的电面题
相关话题的讨论汇总
话题: given话题: 2d话题: careercup话题: coords话题: 一道
进入JobHunting版参与讨论
1 (共1页)
z**********g
发帖数: 209
1
Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
that are of distance less than x units long.
Let x = 1;
Given (0,0), (0,1), (1, 2), (4,6);
Return 1 -> (0,0), (0,1)
brute force就是n^2了,carerrcup上讨论的结果就是这个题和 closest pair 不一样
,但是没什么结果
M*m
发帖数: 141
2
x and y are both positive?
f*******e
发帖数: 1161
3
好像是可以先x(y)排序,大约类似一个sweep的算法,是n log n复杂度。有个论文讲这
个,也没读明白。

coords

【在 z**********g 的大作中提到】
: Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
: that are of distance less than x units long.
: Let x = 1;
: Given (0,0), (0,1), (1, 2), (4,6);
: Return 1 -> (0,0), (0,1)
: brute force就是n^2了,carerrcup上讨论的结果就是这个题和 closest pair 不一样
: ,但是没什么结果

g*****u
发帖数: 298
4
KD tree?
x******3
发帖数: 245
5
什么是KD tree, 给个全称吧,也好google

【在 g*****u 的大作中提到】
: KD tree?
d*******d
发帖数: 2050
6
k-dimention tree.

【在 x******3 的大作中提到】
: 什么是KD tree, 给个全称吧,也好google
K******g
发帖数: 1870
7
不明白,brute-force怎么回事N^2呢,我怎么觉得是N^N?

coords

【在 z**********g 的大作中提到】
: Given a set of points (x,y) on a 2D coord system, identify list of 2D coords
: that are of distance less than x units long.
: Let x = 1;
: Given (0,0), (0,1), (1, 2), (4,6);
: Return 1 -> (0,0), (0,1)
: brute force就是n^2了,carerrcup上讨论的结果就是这个题和 closest pair 不一样
: ,但是没什么结果

1 (共1页)
进入JobHunting版参与讨论
相关主题
问一道Uber的电面题再讨论一个面试难题
google面经(挂了)Google 面试题 一道
一道有意思的Google面试题bloomberg面试经历
Amazon算法问题请教One question on Careercup
问一个小于X距离的问题bit manipulation 小题
CareerCup 上一道老题再问一道老题
问一道google面试题(from careercup)find missing numbersin given billion number
FB的k-d tree面试题Ask a amazon question from careercup.
相关话题的讨论汇总
话题: given话题: 2d话题: careercup话题: coords话题: 一道