forked from EngBasit/Perfect-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeSort.java
More file actions
72 lines (58 loc) · 1.23 KB
/
MergeSort.java
File metadata and controls
72 lines (58 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
public class MergeSort {
public static void main(String args[]) {
int arr[] = {23, 12, 85, 39, 98, 7, 16, 97, 54};
System.out.println("Given Array");
printArray(arr);
MergeSort ob = new MergeSort();
ob.sort(arr, 0, arr.length - 1);
System.out.println("\nSorted array");
printArray(arr);
}
void merge(int arr[], int low, int mid, int up) {
int n1 = mid - low + 1;
int n2 = up - mid;
int Left[] = new int[n1];
int Right[] = new int[n2];
for (int i = 0; i < n1; ++i)
Left[i] = arr[low + i];
for (int j = 0; j < n2; ++j)
Right[j] = arr[mid + 1 + j];
int i = 0, j = 0;
int k = low;
while (i < n1 && j < n2) {
if (Left[i] <= Right[j]) {
arr[k] = Left[i];
i++;
}
else {
arr[k] = Right[j];
j++;
}
k++;
}
while (i < n1) {
arr[k] = Left[i];
i++;
k++;
}
while (j < n2) {
arr[k] = Right[j];
j++;
k++;
}
}
void sort(int arr[], int low, int up) {
if (low < up) {
int mid =low + (up-low)/2;
sort(arr, low, mid);
sort(arr, mid + 1, up);
merge(arr, low, mid, up);
}
}
static void printArray(int arr[]) {
int n = arr.length;
for (int i = 0; i < n; ++i)
System.out.print(arr[i] + " ");
System.out.println();
}
}