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

Given a matrix with m rows and n columns, each of which are sorted. How to efficiently sort the entire matrix?

I know a solution which runs in O(m n log(min(m,n)). I am looking for a better solution.

The approach that I know basically takes 2 rows/cols at a time and applies merge operation.

Here is an example:

[[1,4,7,10],

 [2,5,8,11],

 [3,6,9,12]]

is the input martix which has every row and column sorted.

Expected output is:

[1,2,3,4,5,6,7,8,9,10,11,12]

Another example:

[[1, 2, 3, 3, 4, 5, 6, 6, 7, 7],

 [1, 2, 4, 6, 7, 7, 8, 8, 9,10],

 [3, 3, 4, 8, 8, 9,10,11,11,12],

 [3, 3, 5, 8, 8, 9,12,12,13,14]]
share|improve this question
1  
Is the highest value for a cell in the matrix known? Is memory complexity an issue? – Neowizard Nov 25 '10 at 17:29
1  
The question is rather ambiguous - try giving a before/after example for a small m x n matrix. – Paul R Nov 25 '10 at 17:30
think he just wants to sort the values in the matrix. (i.e. given that particular structure of values, what is an efficient way to sort the values) – lijie Nov 25 '10 at 17:32
@Paul [(1, 4, 8), (2, 9, 11), (3, 12, 14)] – khachik Nov 25 '10 at 17:40
Just added an example with the main question. – Anil Katti Nov 25 '10 at 17:43
show 4 more comments

1 Answer

up vote 33 down vote accepted

I don't think you can do it any faster than Ω(m n log(min(m, n)), at least not in the general case.

Suppose (without loss of generality) that m < n. Then your matrix looks like this:

a matrix with rows and columns sorted

Each circle is a matrix entry and each arrow indicates a known order relation (the entry at the source of the arrow is smaller than the entry at the destination of the arrow).

To sort the matrix, we must resolve all the unknown order relations, some of which are shown in the grey boxes here:

the order relations remaining to be resolved

Sorting all of these boxes takes:

2 Σk < m Ω(k log k) + (n - m + 1) Ω(m log m)

= 2 Ω(m² log m) + (n - m + 1) Ω(m log m)

= Ω(m n log m)

share|improve this answer
+1 For the best presented answer I've seen to any question. Also looks correct to me, but that paled in to insignificance. – Orbling Nov 25 '10 at 19:06
Wow! Thanks for the explanation. It looks sound. I did not understand a couple of thing: 1. Where did the second term, (n - m + 1) Ω(m log m) comes from? And, 2. I am wondering if there is a tighter upper bound for Σk < m Ω(k log k). Something tighter than Ω(m² log m)? – Anil Katti Nov 25 '10 at 19:47
The (nm + 1) Ω(m log m) comes from the diagonal grey boxes that span the matrix from bottom to top: each such box contains m elements, and there are (nm + 1) of them. As for your other question, Ω is a lower bound, not an upper bound. – Gareth Rees Nov 25 '10 at 19:52
A good diagram is worth a thousands words, too bad I can't give it a good 10 upvotes to make it up :) – Matthieu M. Nov 25 '10 at 20:06
@Gareth - perfect. I got the second term's role. But, are you sure Σk < m Ω(k log k) is Ω(m² log m)? In any case, the summation is dominated by the second term and I agree that the lower bound for this problem is Ω(m n log m). Thanks a ton for this beautiful answer! – Anil Katti Nov 25 '10 at 20:21
show 4 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.