一道Google面试题# JobHunting - 待字闺中c*e2011-01-29 08:011 楼Given a N*N Matrix. All rows are sorted, and all columns are sorted. FindtheKth Largest element of the matrix.
f*42011-01-29 08:013 楼能展开讲讲么?【在 z****o 的大作中提到】: 怎么这个题重现率这么高啊......: 我只能做 kLog(n) 或者 nLog(Value_Range)的。
h*c2011-01-29 08:014 楼有row hash 和 column hash码?【在 c****e 的大作中提到】: Given a N*N Matrix. All rows are sorted, and all columns are sorted. Find: the: Kth Largest element of the matrix.
c*n2011-01-29 08:017 楼young试tableausame algo as heapify【在 c****e 的大作中提到】: Given a N*N Matrix. All rows are sorted, and all columns are sorted. Find: the: Kth Largest element of the matrix.
s*t2011-01-29 08:019 楼我能想到的是这样:每行取最大O(n), 是一个sorted array, 取最大O(1), 然后 insert next value to the right place O(log(n)). k个所以klog(n). 是这个意思吗?有人说用heap,但是感觉建个heap就要nlog(n)吧。【在 z****o 的大作中提到】: 怎么这个题重现率这么高啊......: 我只能做 kLog(n) 或者 nLog(Value_Range)的。