Amazon interview question

Find the kth smallest number in an unsorted array with minimum complexity.

Interview Answers

Anonymous

24 Jul 2012

we can use max heap of size k. for more info http://www.careercup.com/question?id=14118753

3

Anonymous

19 Jun 2012

Use partitioning so that sorting is not required.

1