Sorting, Sets, and Selecting - Ed. 2. and 3.: Chapter 10 - Ed. 4.: Chapter 11
Sorting, Sets, and Selection Merge-sort -Divide-and-conquer strategy -Merge process and merge-sort Sets -Set ADT -Set operations Quick-sort -Simple quick-sort -In-place quick-sort
Merge Sort
Therefore, the merge sort involves three steps in sorting a sequence S with n elements: 1. Divide: If S has zero or one element, return S immediately; it is already sorted. Otherwise, split S into two sequences S 1 and S 2, each containing about half of the elements in S; that is, S 1 contains the first n/2 elements of S, and S 2 contains the rest. 2. Recur: Recursively sort sequence S 1 and S Conquer: Put back the elements into S by merging the sorted sequences S 1 and S 2 into a sorted sequence.
The figure here shows how the sequence is divided in the previous example
The figure here shows how the sequences are merged in the previous example
take the first element comparison Put remaining elements in S1 into S Put remaining elements in S2 into S
The Running Time of Merge Sort The running time of merge sort is proportional to nlogn where n is the size of the sequence. running time = O(nlogn). Recall that the running time for bubble sort is proportional to the square of n. Therefore merge sort is much faster than bubble sort.
public class Comparator { public int compare(Object v1, Object v2) { if (((Integer) v1).intValue() < (Integer) v2).intValue()) return -1; else if (((Integer) v1).intValue() == ((Integer) v2).intValue()) return 0; return 1; } public boolean isLessThan (Object v1, Object v2) { Integer u1 = (Integer) v1; Integer u2 = (Integer) v2; if (u1.intValue() < u2.intValue()) return true; return false; }
public boolean isEqualTo (Object v1, Object v2) { Integer u1 = (Integer) v1; Integer u2 = (Integer) v2; if (u1.intValue() == u2.intValue()) return true; return false; } public boolean isLargerThan (Object v1, Object v2) { Integer u1 = (Integer) v1; Integer u2 = (Integer) v2; if (u1.intValue() > u2.intValue()) return true; return false; } public boolean isLessThanOrEqualTo (Object v1, Object v2) { Integer u1 = (Integer) v1; Integer u2 = (Integer) v2; if (u1.intValue() == u2.intValue() or (u1.intValue() < u2.intValue()) ) return true; return false; }