MergeSort Parallel Combiner

From CSE231 Wiki
Revision as of 18:59, 28 May 2018 by Cosgroved (talk | contribs) (Created page with "=(Optional) Challenge Parallel Combiner= {{CodeToImplement|ParallelCombiner|parallelCombine|sort.fun.merge}} You can divide and conquer the combine step in merge sort. The wo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

(Optional) Challenge Parallel Combiner

class: ParallelCombiner.java Java.png
methods: parallelCombine
package: sort.fun.merge
source folder: student/src/main/java

You can divide and conquer the combine step in merge sort. The work should remain while the critical path length can be cleanly improved from down to .

Sadly, you cannot simply divide both sides down the middle and merge the lower halves together and the upper halves together (as the data will likely not line up perfectly).

Circle-information.svg Tip:Being able to perform operations like merge sort combine in parallel often comes down to the question "How can I figure out where to put the current item?"


You can divide one side (choose the longer of the two) and then binary search for the value in the other side.
Attention niels epting.svg Warning: SPOILER: Arrays.binarySearch(a) returns a negative number if it does not find the exact number.

Parallel Combiner Correctness

class: ParallelMergeSortParallelCombinerTestSuite.java Junit.png
package: sort.fun.merge
source folder: testing/src/test/java