-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathmerge_sort.cpp
More file actions
69 lines (69 loc) · 1.26 KB
/
Copy pathmerge_sort.cpp
File metadata and controls
69 lines (69 loc) · 1.26 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
#include <iostream>
using namespace std;
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;
while (i <= mid && j <= high)
{
if (a[i] < a[j])
{
temp[k] = a[i];
k++;
i++;
}
else
{
temp[k] = a[j];
k++;
j++;
}
}
while (i <= mid)
{
temp[k] = a[i];
k++;
i++;
}
while (j <= high)
{
temp[k] = a[j];
k++;
j++;
}
for (i = low; i <= high; i++)
{
a[i] = temp[i - low];
}
}
void mergesort(int *a, int low, int high)
{
int mid;
if (low < high)
{
mid = (high + low) / 2;
mergesort(a, low, mid);
mergesort(a, mid + 1, high);
merge(a, low, high, mid);
}
}
int main()
{
int n, i;
cout << "\nenter the number of element:";
cin >> n;
int arr[n];
for (i = 0; i < n; i++)
{
cout << "enter element" << i + 1 << ":";
cin >> arr[i];
}
mergesort(arr, 0, n - 1);
cout << "\nsorted data";
for (i = 0; i < n; i++)
cout << "->" << arr[i];
return 0;
// complexity of mergesort is O(n*Logn)
}