-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerge_sort.java
More file actions
90 lines (73 loc) · 2.44 KB
/
merge_sort.java
File metadata and controls
90 lines (73 loc) · 2.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package datastructures;
public class merge_sort {
// Main method to call mergeSort
public static void main(String[] args) {
int[] array = {12, 11, 13, 5, 6, 7};
System.out.println("Given Array");
printArray(array);
merge_sort ob = new merge_sort();
ob.mergeSort(array, 0, array.length - 1);
System.out.println("\nSorted array");
printArray(array);
}
// Method to sort an array using mergeSort
public void mergeSort(int[] array, int left, int right) {
if (left < right) {
// Find the middle point
int middle = left + (right - left) / 2;
// Recursively sort the first and second halves
mergeSort(array, left, middle);
mergeSort(array, middle + 1, right);
// Merge the sorted halves
merge(array, left, middle, right);
}
}
// Method to merge two subarrays
public void merge(int[] array, int left, int middle, int right) {
// Sizes of two subarrays to be merged
int n1 = middle - left + 1;
int n2 = right - middle;
// Temporary arrays
int[] L = new int[n1];
int[] R = new int[n2];
// Copy data to temp arrays
for (int i = 0; i < n1; ++i)
L[i] = array[left + i];
for (int j = 0; j < n2; ++j)
R[j] = array[middle + 1 + j];
// Merge the temp arrays
// Initial indexes of first and second subarrays
int i = 0, j = 0;
// Initial index of merged subarray array
int k = left;
while (i < n1 && j < n2) {
if (L[i] <= R[j]) {
array[k] = L[i];
i++;
} else {
array[k] = R[j];
j++;
}
k++;
}
// Copy remaining elements of L[] if any
while (i < n1) {
array[k] = L[i];
i++;
k++;
}
// Copy remaining elements of R[] if any
while (j < n2) {
array[k] = R[j];
j++;
k++;
}
}
// Utility method to print the array
public static void printArray(int[] array) {
int n = array.length;
for (int i = 0; i < n; ++i)
System.out.print(array[i] + " ");
System.out.println();
}
}