Created
June 13, 2016 12:34
-
-
Save kuzemkon/06aa1ee6bf3c525f6dffaa755dfda1b4 to your computer and use it in GitHub Desktop.
Merge Sorting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MergeSort { | |
private int[] data; | |
private void merge(int arr[], int l, int m, int r) { | |
int n1 = m - l + 1; | |
int n2 = r - m; | |
int L[] = new int[n1]; | |
int R[] = new int[n2]; | |
for (int i = 0; i < n1; ++i) | |
L[i] = arr[l + i]; | |
for (int j = 0; j < n2; ++j) | |
R[j] = arr[m + 1 + j]; | |
int i = 0, j = 0; | |
int k = l; | |
while (i < n1 && j < n2) { | |
if (L[i] <= R[j]) { | |
arr[k] = L[i]; | |
i++; | |
} else { | |
arr[k] = R[j]; | |
j++; | |
} | |
k++; | |
} | |
while (i < n1) { | |
arr[k] = L[i]; | |
i++; | |
k++; | |
} | |
while (j < n2) { | |
arr[k] = R[j]; | |
j++; | |
k++; | |
} | |
} | |
public void sort(int arr[], int l, int r) { | |
data = arr; | |
if (l < r) { | |
int m = (l + r) / 2; | |
sort(arr, l, m); | |
sort(arr, m + 1, r); | |
merge(arr, l, m, r); | |
} | |
} | |
public int[] getArray() { | |
return this.data; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment