What is the relation between merges and number of items in a in k-way merge - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:02:30Zhttp://stackoverflow.com/feeds/question/658502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge0What is the relation between merges and number of items in a in k-way mergefxc1232009-03-18T14:31:20Z2009-08-03T22:00:01Z
<p>The question is: In a k-way merge, how many merge operation will we perform.
For example: 2-way merge:2 nodes 1 merge; 3 nodes 2 merge; 4 nodes 3 merge. So we get M(n)=n-1.</p>
<p>What the the M(n) when k is arbitrary?</p>
http://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge/659214#6592141Answer by j_random_hacker for What is the relation between merges and number of items in a in k-way mergej_random_hacker2009-03-18T17:08:44Z2009-03-18T17:08:44Z<p>2-way merges are most efficient when merging equal-sized blocks, so the most efficient <em>k</em>-way merge based on 2-way merges is to first merge block 1 with block 2, block 3 with block 4, and so on, then merge the first two resulting blocks, and so on. This is basically how mergesort works, and results in O(<em>kn</em> log <em>k</em>) time, assuming each of the <em>k</em> blocks contains <em>n</em> items. But it's only perfectly efficient if all blocks have exactly <em>n</em> items, and <em>k</em> is a power of 2, so...</p>
<p>Instead of performing <em>k</em> separate merge passes, you can use a single pass that uses a heap containing the first item of each block (i.e. <em>k</em> items in total):</p>
<ol>
<li>Read the lowest item from the heap (O(log <em>k</em>) time)</li>
<li>Write it out</li>
<li>Remove it from the heap</li>
<li>If the block that that item came from is not yet exhausted, place the next item from it into the heap (O(log <em>k</em>) time again).</li>
<li>Repeat until the heap is empty.</li>
</ol>
<p>If there are a total of <em>kn</em> items, this always takes O(<em>kn</em> log <em>k</em>) time regardless of how they are distributed amongst blocks, and regardless of whether <em>k</em> is a power of 2. Your heap needs to contain <code>(item, block_index)</code> pairs so that you can identify which block each item comes from.</p>
http://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge/660806#6608060Answer by for What is the relation between merges and number of items in a in k-way merge2009-03-19T01:55:17Z2009-03-19T01:55:17Z<p>yes, The heap way may be more effective. But what's the answer to the orginal question? I found there may be no answer about that since it is maybe not a full k-way tree, so 4-way could regress to 3-way, 2-way. </p>
http://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge/661025#6610251Answer by j_random_hacker for What is the relation between merges and number of items in a in k-way mergej_random_hacker2009-03-19T04:05:33Z2009-03-19T04:05:33Z<p>OK, to answer the original question as stated:</p>
<p>To merge <em>k</em> blocks using a sequence of 2-way merges <em>always</em> requires exactly <em>k</em> - 1 merges, since regardless of what pair of blocks you choose to merge at any point in time, merging them reduces the total number of blocks by 1.</p>
<p>As I said in my original answer, which pairs of blocks you choose to merge <em>does</em> impact the overall time complexity -- it's better to merge similar-sized blocks -- but it doesn't affect the <em>number</em> of 2-way merge operations.</p>
http://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge/661122#6611220Answer by for What is the relation between merges and number of items in a in k-way merge2009-03-19T05:08:23Z2009-03-19T05:08:23Z<p>thanks hacker.
In your original solution, it seems you use a heapsort to merge the blocks?</p>
<p>And I know if the each block doesn't contain the same number items, the merge is not effective. But Is there a formula to calculate that? just like 2-way which is (n-1)</p>