-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathMergeSort.cpp
More file actions
78 lines (68 loc) · 1.29 KB
/
MergeSort.cpp
File metadata and controls
78 lines (68 loc) · 1.29 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
#include <iostream>
#include "sorting_algorithms.h"
using namespace std;
// A function to merge the two half into a sorted data.
void
Merge (int *a, int low, int high, int mid)
{
// We have low to mid and mid+1 to high already sorted.
int i, j, k, temp[high - low + 1];
i = low;
k = 0;
j = mid + 1;
// Merge the two parts into temp[].
while (i <= mid && j <= high)
{
if (a[i] < a[j])
{
temp[k] = a[i];
k++;
i++;
}
else
{
temp[k] = a[j];
k++;
j++;
}
}
// Insert all the remaining values from i to mid into temp[].
while (i <= mid)
{
temp[k] = a[i];
k++;
i++;
}
// Insert all the remaining values from j to high into temp[].
while (j <= high)
{
temp[k] = a[j];
k++;
j++;
}
// Assign sorted data stored in temp[] to a[].
for (i = low; i <= high; i++)
{
a[i] = temp[i - low];
}
}
// A function to split array into two parts.
void
MergeSort (int *a, int low, int high)
{
int mid;
if (low < high)
{
mid = (low + high) / 2;
// Split the data into two half.
MergeSort (a, low, mid);
MergeSort (a, mid + 1, high);
// Merge them to get sorted output.
Merge (a, low, high, mid);
}
}
void
MergeSort (int* a, int n)
{
MergeSort(a, 0, n - 1);
}