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

k-way merge is the algorithm that takes as input k sorted arrays, each of size n. It outputs a single sorted array of all the elements.

It does so by using the "merge" routine central to the merge sort algorithm to merge array 1 to array 2, and then array 3 to this merged array, and so on until all k arrays have merged.

I had thought that this algorithm is O(kn) because the algorithm traverses each of the k arrays (each of length n) once. Why is it O(nk^2)?

share|improve this question
9  
You can get O(n k log k) by using a heap or a selection tree to select the next element from the k possible choices at each stage. E.g. Knuth Volume II Sorting and Searching section 5.4.1 – mcdowella Jun 14 '12 at 4:45
algorithm selects pair's of array so you have comb(k 2) = k * (k-1) /2. Since each array has a size of n and merge take O(n) you get O(nk^2) – locojay Jan 29 at 18:19
You can use a Queue and the time will be O(n log k) where n is the number of integers and k is the number of sorted arrays – Odelya May 12 at 13:40

5 Answers

up vote 13 down vote accepted

Because it doesn't traverse each of the k arrays once. The first array is traversed k-1 times, the first as merge(array-1,array-2), the second as merge(merge(array-1, array-2), array-3) ... and so on.

The result is k-1 merges with an average size of n*(k+1)/2 giving a complexity of O(n*(k^2-1)/2) which is O(nk^2).

The mistake you made was forgetting that the merges are done serially rather than in parallel, so the arrays are not all size n.

share|improve this answer
How'd you get the average size? – bneil Feb 11 at 5:10
1  
The first merge is of size 2n (two arrays of size n). The second is of size 3n (the accumulated array of 2n, and one of size n). You should be able to see that the kth pass is (k+1)n. The average size is approximately equal to half that or n(k+1)/2, any residual term won't affect O() analysis. – Recurse Feb 11 at 6:40

A common implementation keeps an array of indexes for each one of the k sorted arrays {i_1, i_2, i__k}. On each iteration the algorithm finds the minimum next element from all k arrays and store it in the output array. Since you are doing kn iterations and scanning k arrays per iteration the total complexity is O(k^2 * n).

Here's some pseudo-code:

Input: A[j] j = 1..k : k sorted arrays each of length n
Output: B : Sorted array of length kn

// Initialize array of indexes
I[j] = 0 for j = 1..k

q = 0

while (q < kn):
    p = argmin({A[j][I[j]]}) j = 1..k           // Get the array for which the next unprocessed element is minimal (ignores arrays for which I[j] > n)
    B[q] = A[p][I[p]]
    I[p] = I[p] + 1
    q = q + 1
share|improve this answer

Actually in the worst case scenario,there will be n comparisons for the first array, 2n for the second, 3n for the third and soon till (k - 1)n.
So now the complexity becomes simply

n + 2n + 3n + 4n + ... + (k - 1)n
= n(1 + 2 + 3 + 4 + ... + (k - 1))
= n((k - 1)*k) / 2
= n(k^2 - k) / 2
= O(nk ^ 2)

:-)

share|improve this answer
thanks :) nice explanation – sonic Mar 16 at 6:40

I do not agree with other answers. You don't have to compare items 1 by 1 each time. You should simply maintain the most recent K items in a sorted set. You remove the smallest and relace it by its next element. This should be n.log(k)

Relevant article. Disclaimer: I participated in writing it

share|improve this answer
Correct. But you need to mention that you are using there a heap (e.g . queue) – Odelya May 12 at 13:44
this what I meant by a "sorted set" in my answer. actually you need a sorted multiset. a heap is one possible implementation. – Sinbadsoft.com May 12 at 17:12

1) You have k sorted arrays, each of size n. Therefore total number of elements = k * n

2) Take the first element of all k arrays and create a sequence. Then find the minimum of this sequence. This min value is stored in the output array. Number of comparisons to find the minimum of k elements is k - 1.

3) Therefore the total number of comparisons
= (comparisons/element) * number of elements
= (k - 1) * k * n
= k^2 * n // approximately

share|improve this answer

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.