-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry_merge.cpp
More file actions
61 lines (58 loc) · 1010 Bytes
/
Copy pathtry_merge.cpp
File metadata and controls
61 lines (58 loc) · 1010 Bytes
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
#include <iostream>
using namespace std;
void merge(int arr[], int low, int mid, int high){
int i=0, j=0, k=low;
int n1 = mid-low+1;
int n2 = high-mid;
int L[n1], R[n2];
for (int i=0; i<n1; i++)
L[i]=arr[low+i];
for (int j=0; j<n2; j++)
R[j]=arr[mid+1+j];
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++;
}
}
void mergeSort(int arr[], int low, int high){
int mid;
if (low<high){
mid=(low+high)/2;
mergeSort(arr, low, mid);
mergeSort(arr, mid+1, high);
merge(arr, low, mid, high);
}
}
int main(){
int n;
cout<<"Enter the size of the array ";
cin>>n;
int arr[n];
cout<<"Enter the array elements: ";
for (int i=0; i<n; i++){
cin>>arr[i];
}
mergeSort(arr, 0, n-1);
cout<<"Sorted array "<<endl;
for (int i=0; i<n; i++){
cout<<arr[i]<<" ";
}
return 0;
}