forked from TechVine/DSA--Hacktoberfest-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Merge sort.c++
68 lines (68 loc) · 995 Bytes
/
Merge sort.c++
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
#include<iostream>
using namespace std;
void swapping (int&a,int&b){
int temp;
temp=a;
a=b;
b=temp;
}
void display (int*array,int size)
for(int i=0;i<size;i++)
cout<<array[i]<< " ";
cout<<endl;
}
void merge(int*array,int l,int m,int r){
int i,j,k,nl,nr;
nl=m-l+1;
nr=r-m;
int l arr[nl],r arr[nr];
for(i=0;i<nl;i++)
l arr[i]=array [l+i];
for(j=0;j<nr;j++)
r arr[j]=array[m+1+j];
i=0;j=0;k=l;
while(i<nl&&j<nr){
if(l arr[i]<=r arr[j]){
array[k]=l arr[i];
i++;
}else{
array[k]=r arr[j];
j++;
}
k++;
}
while(i<nl){
array[k]=l arr[i];
i++;k++;
}
while(j<nr){
array[k]=r arr[j];
j++;k++;
}
}
void mergesort(int*array,int l,int r){
int m;
if(l<r){
int m=l+(r-1)/2;
mergesort(array,l,m);
mergesort(array,m+1,r);
merge(array,l,m,r);
}
}
int main()
{
int n;
cout<<"enter the number of elements:";
cin>>n;
int arr[n];
cout<<"enter elements:";<<endl;
for(int i=0;i<n;i++)
{
cin>>arr[i];
}
cout<<"array before sorting:";
display(arr,n);
mergesort(arr,0,n-1);
cout<<"array after sorting:";
display (arr,n);
}