Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

consider the problem of sorting a n x n matrix i.e. the rows and columns are in ascending order. I want to find the lower and upper bound of this problem.

I found that it is O(n^2logn) by just sorting the elements and then outputting the first n elements as the first row, the next n elements as the second row, and so on. howe ver i want to prove that it is also Omega(n^2logn).

After trying smaller examples, i think i should prove that if I can solve this problem using less than n^2log(n/e) comparisons, it would violates the log(m!) lower bound for comparisons needed to sort m elements. Any ideas on how to prove that?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.