Kth Largest Element in an Array算法复杂度# JobHunting - 待字闺中
k*r
1 楼
在考虑这道题可以用quick sort类似的方法解,也可以用个min heap做。
min heap复杂度是多少呢?nlongk? k is the size of the heap
quick sort那种呢?worst case nlongn?
一般都prefer哪种解法呢
min heap复杂度是多少呢?nlongk? k is the size of the heap
quick sort那种呢?worst case nlongn?
一般都prefer哪种解法呢