由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道面试题
相关主题
~~~~~~~~问个G家的题~~~~~~~~~~~发个非常规Groupon面经
这题咋做啊?BST合并的面试题
哪位大写给说说 何时用 merge sort, 何时用 quick sort, 何时 heap sort问个google面试题
求storm8面经。。问一道老题
面试中举例常见的高效排序算法, 为什么都举quicksort和mergesort, 很少说heapsort呢A家面试题
问道题求问一道MS面试题
请教一题算法小问题向各位大侠请教几道面试题的思路
被问到了一个问题 求教一下大牛们一道面试题:数组 in-place shuffle
相关话题的讨论汇总
话题: elements话题: perfect话题: shuffle话题: array话题: given
进入JobHunting版参与讨论
1 (共1页)
m*****f
发帖数: 1243
1
Given an array A of n elements and an integer k (where k ..A[k]}and {A[k+1]...A[n]} are already sorted. Give an algorithm to sort the
array A in O(n) time and O(1)space
d**a
发帖数: 84
2
这个就是inplace merge吧,递归是可以,但是要用implicit stack, 不知有无别的办
法。

].
the

【在 m*****f 的大作中提到】
: Given an array A of n elements and an integer k (where k: ..A[k]}and {A[k+1]...A[n]} are already sorted. Give an algorithm to sort the
: array A in O(n) time and O(1)space

g*******y
发帖数: 1930
3
你这个题太难了,人家perfect shuffle还专门发了paper讨论O(n)time O(1)space解法,还用到了数论。
p.s.: perfect shuffle: a1a2...anb1b2...bn -> a1b1a2b2...anbn
你这个题明显比perfect shuffle又增加了难度啊。
另外, merge sort貌似就很难有in place的算法,至少我搜索过没搜索出来。
m*****f
发帖数: 1243
4
I agree, very hard...but don't blame me... This is 2008 Baidu Campus Recruit written test last question
There is a perfect solution for it. Perfect shuffle actually is the worst
case for this.

法,还用到了数论。

【在 g*******y 的大作中提到】
: 你这个题太难了,人家perfect shuffle还专门发了paper讨论O(n)time O(1)space解法,还用到了数论。
: p.s.: perfect shuffle: a1a2...anb1b2...bn -> a1b1a2b2...anbn
: 你这个题明显比perfect shuffle又增加了难度啊。
: 另外, merge sort貌似就很难有in place的算法,至少我搜索过没搜索出来。

g*******y
发帖数: 1930
5
"It has been an research interest to develop in-place mergesort algorithms, almost all of which are however inpractically complicated. "
搜到的UW CSS 342: Mathematical Principles of Computing网页上的一段话。
很好奇,百度的perfect solution是什么?
btw, perfect shuffle仅仅是这个问题的一个特例而已。搞定这个问题比搞定perfect shuffle难多了。。。因为这个问题更general啊

Recruit written test last question

【在 m*****f 的大作中提到】
: I agree, very hard...but don't blame me... This is 2008 Baidu Campus Recruit written test last question
: There is a perfect solution for it. Perfect shuffle actually is the worst
: case for this.
:
: 法,还用到了数论。

d**a
发帖数: 84
6
那到底如何回答呢?

, almost all of which are however inpractically complicated. "

【在 g*******y 的大作中提到】
: "It has been an research interest to develop in-place mergesort algorithms, almost all of which are however inpractically complicated. "
: 搜到的UW CSS 342: Mathematical Principles of Computing网页上的一段话。
: 很好奇,百度的perfect solution是什么?
: btw, perfect shuffle仅仅是这个问题的一个特例而已。搞定这个问题比搞定perfect shuffle难多了。。。因为这个问题更general啊
:
: Recruit written test last question

g*******y
发帖数: 1930
7
搜到个这个
http://thomas.baudel.name/Visualisation/VisuTri/inplacestablesort.html
不过我没时间看了。。

【在 d**a 的大作中提到】
: 那到底如何回答呢?
:
: , almost all of which are however inpractically complicated. "

a********a
发帖数: 219
8
所以说你实在太强了。我从未见过你没听说过的题。你行的。

【在 g*******y 的大作中提到】
: 搜到个这个
: http://thomas.baudel.name/Visualisation/VisuTri/inplacestablesort.html
: 不过我没时间看了。。

1 (共1页)
进入JobHunting版参与讨论
相关主题
一道面试题:数组 in-place shuffle面试中举例常见的高效排序算法, 为什么都举quicksort和mergesort, 很少说heapsort呢
Web Development电话面试经验分享与请教问道题
求javascript CSS 面试题汇集请教一题算法小问题
一道面试题被问到了一个问题 求教一下大牛们
~~~~~~~~问个G家的题~~~~~~~~~~~发个非常规Groupon面经
这题咋做啊?BST合并的面试题
哪位大写给说说 何时用 merge sort, 何时用 quick sort, 何时 heap sort问个google面试题
求storm8面经。。问一道老题
相关话题的讨论汇总
话题: elements话题: perfect话题: shuffle话题: array话题: given