-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmergesort.cpp
More file actions
88 lines (84 loc) · 1.21 KB
/
mergesort.cpp
File metadata and controls
88 lines (84 loc) · 1.21 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
/* Did some changes more to the program in the form of comments for step counter. Incase you are not getting the output comment remove the comments including this :P*/
#include <iostream>
using namespace std;
int c=0;
void Merge(int *a, int low, int high, int mid)
{
int i, j, k, temp[high-low+1];
i = low;
k = 0;
j = mid + 1;
//c+=3;
while (i <= mid && j <= high)
{
c+=1;
if (a[i] < a[j])
{
temp[k] = a[i];
k++;
i++;
c+=3;
}
else
{
temp[k] = a[j];
k++;
j++;
c+=3;
}
// c+=1;
}
c+=1;
while (i <= mid)
{
//c+=1;
temp[k] = a[i];
k++;
i++;
c+=3;
}
c++;
while (j <= high)
{
temp[k] = a[j];
k++;
j++;
c+=3;
}
c++;
for (i = low; i <= high; i++)
{
a[i] = temp[i-low];
c+=2;
}
c+=1;
}
void MergeSort(int *a, int low, int high)
{
int mid;
if (low < high)
{
mid=(low+high)/2;
MergeSort(a, low, mid);
MergeSort(a, mid+1, high);
Merge(a, low, high, mid);
}
}
int main()
{
int n,i;
int a[15];
cout<<"\nEnter the number of data element to be sorted: ";
cin>>n;
cout<<"Enter Elements: ";
for(i = 0; i < n; i++)
{
cin>>a[i];
}
MergeSort(a, 0, n-1);
cout<<"\nSorted array ";
for (i = 0; i < n; i++)
cout<<a[i]<<"\t";
cout<<"\nc="<<c;
return 0;
}