由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Sorted Array 变成 Balanced BST 时间复杂度是多少?
相关主题
书上关于search和sorting的部分 应该不用全看吧?Google电话面试题目
array contains two integer that sum up to 7一个特别的inplace merge two sorted arrays
a电面面经一个小公司面经
k sorted array merge大家现场写一个heap?问个面试题
把leetcode做完了[算法] unsorted array
请教一道题find median for k sorted arrays
BST合并的面试题c/c++ qsort/sort 来 sort array of string
算法问题,m*m matrixExtension problem of finding intersection of two sorted array
相关话题的讨论汇总
话题: array话题: sorted话题: balanced话题: bst话题: dsw
进入JobHunting版参与讨论
1 (共1页)
b*********n
发帖数: 1258
1
感觉是O(n)
对吗?
g*******y
发帖数: 1930
2

dsw
r****o
发帖数: 1950
3
what is dsw?

【在 g*******y 的大作中提到】
: 对
: dsw

H*M
发帖数: 1268
4
is dsw complicated?
if we partition the array using the middle point, do it recursively, and con
nect the middle point with those two nodes returned from left child and righ
t child, the complexity will be:
T(n) = 2T(n/2) +O(1)
T(n) = O(n) too..
Am i missing something here?

【在 g*******y 的大作中提到】
: 对
: dsw

H*M
发帖数: 1268
5
oh...I see
u guys mean O(1) space too?
here is the in-place O(1) and O(n) time algorithm for that.
http://www.eecs.umich.edu/~qstout/pap/CACM86.pdf

con
righ

【在 H*M 的大作中提到】
: is dsw complicated?
: if we partition the array using the middle point, do it recursively, and con
: nect the middle point with those two nodes returned from left child and righ
: t child, the complexity will be:
: T(n) = 2T(n/2) +O(1)
: T(n) = O(n) too..
: Am i missing something here?

h***r
发帖数: 726
6
http://en.wikipedia.org/wiki/DSW_algorithm

【在 r****o 的大作中提到】
: what is dsw?
1 (共1页)
进入JobHunting版参与讨论
相关主题
Extension problem of finding intersection of two sorted array把leetcode做完了
问一道老题请教一道题
哪里有讲k-way merge的?BST合并的面试题
请教一下external sorting的问题算法问题,m*m matrix
书上关于search和sorting的部分 应该不用全看吧?Google电话面试题目
array contains two integer that sum up to 7一个特别的inplace merge two sorted arrays
a电面面经一个小公司面经
k sorted array merge大家现场写一个heap?问个面试题
相关话题的讨论汇总
话题: array话题: sorted话题: balanced话题: bst话题: dsw