forked from ishikkkkaaaa/DSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathee.cpp
78 lines (68 loc) · 1.07 KB
/
ee.cpp
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
#include <iostream>
#include <vector>
using namespace std;
//helper method
void merge(vector<int> &array, int s, int e)
{
int i = s;
int m = (s + e) / 2;
int j = m + 1;
vector<int> temp;
while (i <= m and j <= e)
{
if (array[i] < array[j])
{
temp.push_back(array[i]);
i++;
}
else
{
temp.push_back(array[j]);
j++;
}
}
//copy rem elements from first array
while (i <= m)
{
temp.push_back(array[i++]);
}
// or copy rem elements from second array
while (j <= e)
{
temp.push_back(array[j++]);
}
//copy back the eleemtns from temp to original array
int k = 0;
for (int idx = s; idx <= e; idx++)
{
array[idx] = temp[k++];
}
return;
}
//sorting method
void mergesort(vector<int> &arr, int s, int e)
{
//base case
if (s >= e)
{
return;
}
//rec case
int mid = (s + e) / 2;
mergesort(arr, s, mid);
mergesort(arr, mid + 1, e);
return merge(arr, s, e);
}
int main()
{
vector<int> arr{10, 5, 2, 0, 7, 6, 4};
int s = 0;
int e = arr.size() - 1;
mergesort(arr, s, e);
for (int x : arr)
{
cout << x << ",";
}
cout << endl;
return 0;
}