由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Sort a list in which each number is at a distance k from its actual position
相关主题
C++里如何将一个vector转换成priority_queue有A[i]
为什么这题要用min heap?Sort numbers stored on different machinesn个点,找出离原点最近的100个点
很久前,面亚麻时被出了个hard的收集了几个 List相关的题
find 5 smallest number in a billion number list算法一问
一个NxN矩阵每行每列都sort好,如何排序?哪位大写给说说 何时用 merge sort, 何时用 quick sort, 何时 heap sort
问个经典问题的improvementmedian of an array of ints, 请问这题的经典回答是什么?谢谢
Google phone interviewPrint out all elements in a sorted matrix
如何让python dictionary sorting 的速度变得很快? (转载)请教一个老算法题, k-th largest sum
相关话题的讨论汇总
话题: sort话题: distance话题: actual话题: its话题: list
进入JobHunting版参与讨论
1 (共1页)
w***y
发帖数: 6251
1
网上看到这个题目,不太明白什么意思。 麻烦大家给讲讲
k****r
发帖数: 807
2
是这个题吗?
Sort a list in which each number is at MOST distance k from its actual
distance.
min heap, space O(k)

【在 w***y 的大作中提到】
: 网上看到这个题目,不太明白什么意思。 麻烦大家给讲讲
w***y
发帖数: 6251
3
多谢! 其实我也不知道具体要求,就是看到这个题面,讨论什么的都有 😓
http://www.glassdoor.com/Interview/Sort-a-list-of-numbers-in-wh

【在 k****r 的大作中提到】
: 是这个题吗?
: Sort a list in which each number is at MOST distance k from its actual
: distance.
: min heap, space O(k)

k****r
发帖数: 807
4
你不是在FLG吗?还要跳?

【在 w***y 的大作中提到】
: 多谢! 其实我也不知道具体要求,就是看到这个题面,讨论什么的都有 😓
: http://www.glassdoor.com/Interview/Sort-a-list-of-numbers-in-wh

w***y
发帖数: 6251
5
网上看到这个题目,不太明白什么意思。 麻烦大家给讲讲
k****r
发帖数: 807
6
是这个题吗?
Sort a list in which each number is at MOST distance k from its actual
distance.
min heap, space O(k)

【在 w***y 的大作中提到】
: 网上看到这个题目,不太明白什么意思。 麻烦大家给讲讲
w***y
发帖数: 6251
7
多谢! 其实我也不知道具体要求,就是看到这个题面,讨论什么的都有 😓
http://www.glassdoor.com/Interview/Sort-a-list-of-numbers-in-wh

【在 k****r 的大作中提到】
: 是这个题吗?
: Sort a list in which each number is at MOST distance k from its actual
: distance.
: min heap, space O(k)

k****r
发帖数: 807
8
你不是在FLG吗?还要跳?

【在 w***y 的大作中提到】
: 多谢! 其实我也不知道具体要求,就是看到这个题面,讨论什么的都有 😓
: http://www.glassdoor.com/Interview/Sort-a-list-of-numbers-in-wh

b********r
发帖数: 620
9
blaze大牛当时讲了一下,就是不停的build heap,保证取前k个。
用quick sort可能也可以

【在 k****r 的大作中提到】
: 是这个题吗?
: Sort a list in which each number is at MOST distance k from its actual
: distance.
: min heap, space O(k)

d********i
发帖数: 582
10
我9月份面G跪在这题了。
j********r
发帖数: 127
11
没看懂,能否举几个例子?

【在 d********i 的大作中提到】
: 我9月份面G跪在这题了。
1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一个老算法题, k-th largest sum一个NxN矩阵每行每列都sort好,如何排序?
一道面试题问个经典问题的improvement
问道面试题Google phone interview
Find the K largest element in a sorted M*N array如何让python dictionary sorting 的速度变得很快? (转载)
C++里如何将一个vector转换成priority_queue有A[i]
为什么这题要用min heap?Sort numbers stored on different machinesn个点,找出离原点最近的100个点
很久前,面亚麻时被出了个hard的收集了几个 List相关的题
find 5 smallest number in a billion number list算法一问
相关话题的讨论汇总
话题: sort话题: distance话题: actual话题: its话题: list