Difference between revisions of "MergeSort"
(35 intermediate revisions by 2 users not shown) | |||
Line 8: | Line 8: | ||
For more information on how this process works, visit [https://en.wikipedia.org/wiki/Merge_sort the wikipedia page on merge sort]. | For more information on how this process works, visit [https://en.wikipedia.org/wiki/Merge_sort the wikipedia page on merge sort]. | ||
− | <youtube>Pr2Jf83_kG0</youtube> | + | {{CollapsibleYouTube|CS 50 Shorts: Merge Sort|<youtube>Pr2Jf83_kG0</youtube>}} |
− | <youtube> | + | {{CollapsibleYouTube|HackerRank: Merge Sort|<youtube>KF2j-9iSf4Q</youtube>}} |
− | <youtube> | + | {{CollapsibleYouTube|Merge Sort Combine Step|<youtube>YgXWDGZai4s</youtube>}} |
==Visualization== | ==Visualization== | ||
Line 18: | Line 18: | ||
[[File:MergeSortViz.png|480px|link=https://visualgo.net/en/sorting?slide=10]] | [[File:MergeSortViz.png|480px|link=https://visualgo.net/en/sorting?slide=10]] | ||
+ | |||
+ | == Work and Span == | ||
+ | The divide step doesn't do any real significant work- it just calculates the midpoint. The combine step does all the work of merge sort. The top-level combine (when its two recursive calls have completed) must do N work. The next level does two ~N/2 combines. The level below that performs four ~N/4 combines. And so on. The table is <math>N</math> wide and <math>\log N</math> high. Thus the work of merge sort is <math>O(N\log N)</math>. | ||
+ | |||
+ | For N=16: | ||
+ | |||
+ | {| class="wikitable" style="text-align:center;" | ||
+ | ! | ||
+ | ! colspan="16" | <- - - - - - - - - - - - - - N - - - - - - - - - - - - - -> | ||
+ | |- | ||
+ | ! | ||
+ | | colspan="16" | mid | ||
+ | |- | ||
+ | ! | ||
+ | | colspan="8" | mid | ||
+ | | colspan="8" | mid | ||
+ | |- | ||
+ | ! | ||
+ | | colspan="4" | mid | ||
+ | | colspan="4" | mid | ||
+ | | colspan="4" | mid | ||
+ | | colspan="4" | mid | ||
+ | |- | ||
+ | ! | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | | colspan="2" | mid | ||
+ | |- | ||
+ | ! ^ | ||
+ | | style="background-color:#CCCCFF;" | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | | base | ||
+ | |- | ||
+ | ! | | ||
+ | | colspan="2" style="background-color:#CCCCFF;" | combine [0, 2) | ||
+ | | colspan="2" | combine [2, 4) | ||
+ | | colspan="2" | combine [4, 6) | ||
+ | | colspan="2" | combine [6, 8) | ||
+ | | colspan="2" | combine [8, 10) | ||
+ | | colspan="2" | combine [10, 12) | ||
+ | | colspan="2" | combine [12, 14) | ||
+ | | colspan="2" | combine [14, 16) | ||
+ | |- | ||
+ | ! lg N | ||
+ | | colspan="4" style="background-color:#CCCCFF;" | combine [0, 4) | ||
+ | | colspan="4" | combine [4, 8) | ||
+ | | colspan="4" | combine [8, 12) | ||
+ | | colspan="4" | combine [12, 16) | ||
+ | |- | ||
+ | ! | | ||
+ | | colspan="8" style="background-color:#CCCCFF;" | combine [0, 8) | ||
+ | | colspan="8" | combine [8, 16) | ||
+ | |- | ||
+ | ! v | ||
+ | | colspan="16" style="background-color:#CCCCFF;" | combine [0, 16) | ||
+ | |} | ||
+ | |||
+ | |||
+ | Technically, the span also include log(N) midpoint calculations from the divide steps, this is insignificant next to N, so we focus on just the work/span of the combines. | ||
+ | |||
+ | The grand vast majority of the span for the classic sequential combine merge sort is the work of one combine for each of the levels <span style="background:#CCCCFF">(highlighted in blue)</span>. This works out to be the [https://en.wikipedia.org/wiki/Geometric_series geometric series]: | ||
+ | |||
+ | <math>N + \frac{N}{2} + \frac{N}{4} + \frac{N}{8} + \frac{N}{16} + \cdots + 1</math> | ||
+ | |||
+ | which is: | ||
+ | |||
+ | <math>2N</math> | ||
+ | |||
+ | [[File:Classic_parallel_merge_sort_and_quicksort_span.svg|600px]] | ||
+ | |||
+ | As a [[MergeSort_Parallel_Combiner|challenge problem]], we parallelize the combine step, resulting in a span for merge sort of an outstanding <math>\lg^k{}n</math>. | ||
=The Core Questions= | =The Core Questions= | ||
Line 30: | Line 119: | ||
{{warning | When transitioning to sequential, make sure to NOT sort the entire array when you are only responsible for a range [min,max).}} | {{warning | When transitioning to sequential, make sure to NOT sort the entire array when you are only responsible for a range [min,max).}} | ||
− | |||
− | |||
− | =Code to Implement= | + | =Code to Investigate and Implement= |
You will need to implement merge sort sequentially and in parallel, but you will need to do both implementations recursively. The kernel method should call itself using recursion, but each public mergesort method should only call its kernel once to do the work. | You will need to implement merge sort sequentially and in parallel, but you will need to do both implementations recursively. The kernel method should call itself using recursion, but each public mergesort method should only call its kernel once to do the work. | ||
− | ==Sorter== | + | ==Combine Step== |
+ | Both the sequential and parallel merge sorts will be passed a [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/current/apidocs/sort/merge/core/Combiner.html Combiner]. When you are done with the divide and conquer phases, invoke [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/current/apidocs/sort/merge/core/Combiner.html#combine(T%5B%5D,T%5B%5D,java.util.Comparator) combiner.combineRange(a, b, comparator)] to merge the two sorted sub-problem results. For the base case, [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/current/apidocs/sort/merge/core/Combiner.html#createSingleItemArray(T) combiner.createSingleItemArray(item)] is provided. | ||
+ | |||
+ | ===interface Combiner<T>=== | ||
+ | <syntaxhighlight lang="java"> | ||
+ | public interface Combiner<T> { | ||
+ | IntFunction<T[]> arrayGenerator(); | ||
+ | |||
+ | T[] combine(T[] a, T[] b, Comparator<T> comparator) throws InterruptedException, ExecutionException; | ||
+ | |||
+ | default T[] createSingleItemArray(T item) { | ||
+ | T[] result = arrayGenerator().apply(1); | ||
+ | result[0] = item; | ||
+ | return result; | ||
+ | } | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | ===class SequentialCombiner<T>=== | ||
+ | {{CodeToImplement|SequentialCombiner|constructor<br/>arrayGenerator<br/>combine|sort.merge.exercise}} | ||
+ | |||
+ | {{Constructor_1param_4deep|arrayGenerator}} | ||
+ | |||
+ | {{Getter_4deep|arrayGenerator}} | ||
+ | ====combine==== | ||
+ | Implement the combine step. | ||
+ | |||
+ | ==Sort== | ||
+ | |||
+ | ===interface Sorter<T>=== | ||
+ | |||
+ | <syntaxhighlight lang="java"> | ||
+ | public interface Sorter<T> { | ||
+ | default void sort(T[] data, Comparator<T> comparator) throws InterruptedException, ExecutionException { | ||
+ | |||
+ | throw new NotYetImplementedException(); | ||
+ | |||
+ | } | ||
+ | |||
+ | void sortRange(T[] data, Comparator<T> comparator, int min, int maxExclusive) | ||
+ | throws InterruptedException, ExecutionException; | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
{{CodeToImplement|Sorter|sort|sort.core}} | {{CodeToImplement|Sorter|sort|sort.core}} | ||
The [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html Sorter<T>] interface provides two methods: [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html#sort(T%5B%5D,java.util.Comparator) sort] and [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html#sortRange(T%5B%5D,java.util.Comparator,int,int) sortRange]. We will leave sortRange to the classes which implement Sorter. | The [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html Sorter<T>] interface provides two methods: [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html#sort(T%5B%5D,java.util.Comparator) sort] and [https://www.cse.wustl.edu/~dennis.cosgrove/courses/cse231/spring22/apidocs/sort/core/Sorter.html#sortRange(T%5B%5D,java.util.Comparator,int,int) sortRange]. We will leave sortRange to the classes which implement Sorter. | ||
− | === sort=== | + | ====sort==== |
You will provide a default implementation of the sort method, so that all implementing classes do not have to. | You will provide a default implementation of the sort method, so that all implementing classes do not have to. | ||
Line 47: | Line 177: | ||
{{Sequential|default void sort(T[] data, Comparator<T> comparator)}} | {{Sequential|default void sort(T[] data, Comparator<T> comparator)}} | ||
− | You should simply invoke the sortRange method with the correct arguments. | + | You should simply invoke the sortRange method with the correct arguments. Consider whether you should use data.length-1 or data.length as your max, given that we've named the variable <code>maxExclusive</code>. |
− | + | <!-- | |
==SequentialCombiner== | ==SequentialCombiner== | ||
Merge sort's combine step leverages the fact that it can rely on the two sub-ranges are provided in sorted order. Use this fact to fill the provided temporary buffer with the sorted contents of the entire range [min, maxExclusive). | Merge sort's combine step leverages the fact that it can rely on the two sub-ranges are provided in sorted order. Use this fact to fill the provided temporary buffer with the sorted contents of the entire range [min, maxExclusive). | ||
Line 57: | Line 187: | ||
The public method <code>combineRange(data, comparator, min, mid, maxExclusive)</code> is provided. It creates a temporary buffer and passes it to <code>combineRangeIntoBuffer(buffer, data, comparator, min, mid, maxExclusive)</code> which you will implement to fill the temporary buffer with the combined sorted contents. The contents of the temporary buffer is then copied back to the data array with [https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#arraycopy-java.lang.Object-int-java.lang.Object-int-int- System.arraycopy()]. | The public method <code>combineRange(data, comparator, min, mid, maxExclusive)</code> is provided. It creates a temporary buffer and passes it to <code>combineRangeIntoBuffer(buffer, data, comparator, min, mid, maxExclusive)</code> which you will implement to fill the temporary buffer with the combined sorted contents. The contents of the temporary buffer is then copied back to the data array with [https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#arraycopy-java.lang.Object-int-java.lang.Object-int-int- System.arraycopy()]. | ||
− | + | {{CollapsibleCode|combineRange(T[] data, Comparator<T> comparator, int min, int mid, int maxExclusive)|<syntaxhighlight lang="java">@Override | |
− | + | public void combineRange(T[] data, Comparator<T> comparator, int min, int mid, int maxExclusive) { | |
− | + | int rangeLength = maxExclusive - min; | |
− | + | T[] buffer = ArrayUtils.createArray(componentType, rangeLength); | |
− | + | combineRangeIntoBuffer(buffer, data, comparator, min, mid, maxExclusive); | |
− | + | System.arraycopy(buffer, 0, data, min, maxExclusive - min); | |
− | + | }</syntaxhighlight>}} | |
− | |||
− | |||
=== (Exercise) combineRangeIntoBuffer === | === (Exercise) combineRangeIntoBuffer === | ||
Line 73: | Line 201: | ||
Here you will implement the classic sequential merge combine outlined in the [[#Background|Background]] section. You will read from <code>data</code> between <code>min</code> and <code>maxExclusive</code> and write to <code>buffer</code> starting at 0. | Here you will implement the classic sequential merge combine outlined in the [[#Background|Background]] section. You will read from <code>data</code> between <code>min</code> and <code>maxExclusive</code> and write to <code>buffer</code> starting at 0. | ||
+ | --> | ||
− | ==SequentialMergeSorter== | + | ===SequentialMergeSorter=== |
− | {{CodeToImplement|SequentialMergeSorter| | + | {{CodeToImplement|SequentialMergeSorter|sortRangeOutOfPlace|sort.merge.exercise}} |
Implement the classic divide and conquer sequential algorithm here. | Implement the classic divide and conquer sequential algorithm here. | ||
− | {{Warning|Be | + | {{Warning| Be sure to leverage the provided <code>private final Combiner<T> combiner;</code> field to perform the combine step.}} |
− | ==ParallelMergeSorter== | + | ===ParallelMergeSorter=== |
− | {{CodeToImplement|ParallelMergeSorter| | + | {{CodeToImplement|ParallelMergeSorter|sortRangeOutOfPlace|sort.merge.exercise}} |
Adapt your sequential algorithm to take advantage of what can be parallelized. | Adapt your sequential algorithm to take advantage of what can be parallelized. | ||
Line 92: | Line 221: | ||
{{Warning|Leverage the provided <code>private final IntPredicate isParallelDesired;</code> field to test whether or not parallelism is warranted for the current range length.}} | {{Warning|Leverage the provided <code>private final IntPredicate isParallelDesired;</code> field to test whether or not parallelism is warranted for the current range length.}} | ||
− | {{Warning|Fall back to the provided <code>private final Sorter<T> | + | {{Warning|Fall back to the provided <code>private final Sorter<T> lowerOverheadSorter;</code> field when the <code>isParallelDesired</code> predicate indicates that parallelism is not longer warranted.}} |
<!-- | <!-- | ||
{{CodeToImplement|MergeSort|sequentialMergeSort<br>sequentialMergeSortKernel<br>parallelMergeSort<br>parallelMergeSortKernel|sort.studio.merge}} | {{CodeToImplement|MergeSort|sequentialMergeSort<br>sequentialMergeSortKernel<br>parallelMergeSort<br>parallelMergeSortKernel|sort.studio.merge}} | ||
Line 117: | Line 246: | ||
=Testing Your Solution= | =Testing Your Solution= | ||
− | = | + | {{TestSuite|__MergeSorterTestSuite|sort.merge.exercise}} |
− | {{ | + | |
+ | =Client= | ||
+ | {{Client|MergeSortClient|sort.merge.client|main}} | ||
+ | |||
+ | {{CollapsibleCode|MergeSortClient|<syntaxhighlight lang="java">String[] data = createShuffledLetterNumberPairs(); | ||
+ | System.out.println("unsorted: " + Arrays.toString(data)); | ||
+ | Combiner<String> combiner = new SequentialCombiner<>(String.class); | ||
+ | IntPredicate isParallelDesired = new GreaterThanThreshold(31); | ||
+ | Sorter<String> sorter = new ParallelMergeSorter<>(combiner, isParallelDesired); | ||
+ | sorter.sort(data, Comparator.naturalOrder()); | ||
+ | System.out.println(" sorted: " + Arrays.toString(data));</syntaxhighlight>}} | ||
− | + | =Performance= | |
− | {{Performance|SortTiming|sort}} | + | {{Performance|SortTiming|sort.merge.performance}} |
− | |||
=Pledge, Acknowledgments, Citations= | =Pledge, Acknowledgments, Citations= | ||
{{Pledge|studio-merge-sort}} | {{Pledge|studio-merge-sort}} |
Latest revision as of 04:09, 8 February 2024
Contents
Motivation
Sorting is a problem that is well solved by divide and conquer algorithms. Merge sort is a elegant example which can be parallelized in a straight-forward manner.
Finally, parallelization of the combine step, while not trivial, is possible (and left as an optional fun exercise for those so inclined).
Background
In computer science, merge sort refers to a sorting algorithm which splits an array of data into continuously smaller halves until the arrays reach a size of 1, after which the elements are continuously compared and merged into a sorted array.
For more information on how this process works, visit the wikipedia page on merge sort.
Video: CS 50 Shorts: Merge Sort |
---|
Video: HackerRank: Merge Sort |
---|
Video: Merge Sort Combine Step |
---|
Visualization
If you are unclear on how merge sort works, take a look at the visualgo explanation and visualization of merge sort.
Work and Span
The divide step doesn't do any real significant work- it just calculates the midpoint. The combine step does all the work of merge sort. The top-level combine (when its two recursive calls have completed) must do N work. The next level does two ~N/2 combines. The level below that performs four ~N/4 combines. And so on. The table is wide and high. Thus the work of merge sort is .
For N=16:
<- - - - - - - - - - - - - - N - - - - - - - - - - - - - -> | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
mid | ||||||||||||||||
mid | mid | |||||||||||||||
mid | mid | mid | mid | |||||||||||||
mid | mid | mid | mid | mid | mid | mid | mid | |||||||||
^ | base | base | base | base | base | base | base | base | base | base | base | base | base | base | base | base |
| | combine [0, 2) | combine [2, 4) | combine [4, 6) | combine [6, 8) | combine [8, 10) | combine [10, 12) | combine [12, 14) | combine [14, 16) | ||||||||
lg N | combine [0, 4) | combine [4, 8) | combine [8, 12) | combine [12, 16) | ||||||||||||
| | combine [0, 8) | combine [8, 16) | ||||||||||||||
v | combine [0, 16) |
Technically, the span also include log(N) midpoint calculations from the divide steps, this is insignificant next to N, so we focus on just the work/span of the combines.
The grand vast majority of the span for the classic sequential combine merge sort is the work of one combine for each of the levels (highlighted in blue). This works out to be the geometric series:
which is:
As a challenge problem, we parallelize the combine step, resulting in a span for merge sort of an outstanding .
The Core Questions
- What are the tasks?
- What is the data?
- Is the data mutable?
- If so, how is it shared?
Mistakes To Avoid
Warning: Be sure to calculate the midpoint correctly. |
Warning: When checking the base case, remember to account for [minInclusive, maxExclusive). It is all too easy to get an off by 1 error and stack overflow. |
Warning: When transitioning to sequential, make sure to NOT sort the entire array when you are only responsible for a range [min,max). |
Code to Investigate and Implement
You will need to implement merge sort sequentially and in parallel, but you will need to do both implementations recursively. The kernel method should call itself using recursion, but each public mergesort method should only call its kernel once to do the work.
Combine Step
Both the sequential and parallel merge sorts will be passed a Combiner. When you are done with the divide and conquer phases, invoke combiner.combineRange(a, b, comparator) to merge the two sorted sub-problem results. For the base case, combiner.createSingleItemArray(item) is provided.
interface Combiner<T>
public interface Combiner<T> {
IntFunction<T[]> arrayGenerator();
T[] combine(T[] a, T[] b, Comparator<T> comparator) throws InterruptedException, ExecutionException;
default T[] createSingleItemArray(T item) {
T[] result = arrayGenerator().apply(1);
result[0] = item;
return result;
}
}
class SequentialCombiner<T>
class: | SequentialCombiner.java | |
methods: | constructor arrayGenerator combine |
|
package: | sort.merge.exercise | |
source folder: | student/src/main/java |
constructor
Maintain the passed arrayGenerator parameter in a (private final) instance variable for later use.
arrayGenerator
Return the arrayGenerator previously passed to the constructor.
combine
Implement the combine step.
Sort
interface Sorter<T>
public interface Sorter<T> {
default void sort(T[] data, Comparator<T> comparator) throws InterruptedException, ExecutionException {
throw new NotYetImplementedException();
}
void sortRange(T[] data, Comparator<T> comparator, int min, int maxExclusive)
throws InterruptedException, ExecutionException;
}
class: | Sorter.java | |
methods: | sort | |
package: | sort.core | |
source folder: | student/src/main/java |
The Sorter<T> interface provides two methods: sort and sortRange. We will leave sortRange to the classes which implement Sorter.
sort
You will provide a default implementation of the sort method, so that all implementing classes do not have to.
method: default void sort(T[] data, Comparator<T> comparator)
(sequential implementation only)
You should simply invoke the sortRange method with the correct arguments. Consider whether you should use data.length-1 or data.length as your max, given that we've named the variable maxExclusive
.
SequentialMergeSorter
class: | SequentialMergeSorter.java | |
methods: | sortRangeOutOfPlace | |
package: | sort.merge.exercise | |
source folder: | student/src/main/java |
Implement the classic divide and conquer sequential algorithm here.
Warning: Be sure to leverage the provided private final Combiner<T> combiner; field to perform the combine step. |
ParallelMergeSorter
class: | ParallelMergeSorter.java | |
methods: | sortRangeOutOfPlace | |
package: | sort.merge.exercise | |
source folder: | student/src/main/java |
Adapt your sequential algorithm to take advantage of what can be parallelized.
What can be in parallel?
What is dependent on the parallel tasks completing?
Warning:Leverage the provided private final IntPredicate isParallelDesired; field to test whether or not parallelism is warranted for the current range length. |
Warning:Fall back to the provided private final Sorter<T> lowerOverheadSorter; field when the isParallelDesired predicate indicates that parallelism is not longer warranted. |
(Optional) Challenge Parallel Combiner
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 .
For details on how to complete this challenge, check out: MergeSort_Parallel_Combiner
Testing Your Solution
class: | __MergeSorterTestSuite.java | |
package: | sort.merge.exercise | |
source folder: | testing/src/test/java |
Client
class: | MergeSortClient.java | CLIENT |
package: | sort.merge.client | |
source folder: | student/src/main/java |
MergeSortClient |
---|
String[] data = createShuffledLetterNumberPairs();
System.out.println("unsorted: " + Arrays.toString(data));
Combiner<String> combiner = new SequentialCombiner<>(String.class);
IntPredicate isParallelDesired = new GreaterThanThreshold(31);
Sorter<String> sorter = new ParallelMergeSorter<>(combiner, isParallelDesired);
sorter.sort(data, Comparator.naturalOrder());
System.out.println(" sorted: " + Arrays.toString(data));
|
Performance
class: | SortTiming.java | |
package: | sort.merge.performance | |
source folder: | src/main/java |
Pledge, Acknowledgments, Citations
file: | studio-merge-sort-pledge-acknowledgments-citations.txt |
More info about the Honor Pledge