-
Notifications
You must be signed in to change notification settings - Fork 1
/
MergeSort.cs
67 lines (59 loc) · 1.26 KB
/
MergeSort.cs
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
using System;
using System.Linq;
namespace Algorithms
{
public class MergeSort<T> where T : IComparable
{
public T[] InputArray
{
get;
set;
}
public MergeSort (T[] inputArray)
{
InputArray = inputArray;
}
// The main routine
public T[] Sort(T[] inputArray)
{
if (inputArray.Length > 1) {
// Divide and conquer step
var leftHalfSorted = Sort (inputArray.Take (inputArray.Length / 2).ToArray ());
var rightHalfSorted = Sort (inputArray.Skip (inputArray.Length / 2).Take (inputArray.Length - inputArray.Length / 2).ToArray ());
// Merge step
var outputArray = new T[inputArray.Length];
int i=0, j=0, k=0;
while (i < leftHalfSorted.Length && j < rightHalfSorted.Length)
{
if (leftHalfSorted [i].CompareTo (rightHalfSorted [j]) < 0)
{
outputArray [k] = leftHalfSorted [i];
i++;
k++;
}
else
{
outputArray [k] = rightHalfSorted [j];
j++;
k++;
}
}
for (; i < leftHalfSorted.Length; i++)
{
outputArray [k] = leftHalfSorted [i];
k++;
}
for (; j < rightHalfSorted.Length; j++)
{
outputArray [k] = rightHalfSorted [j];
k++;
}
return outputArray;
}
else
{
return inputArray;
}
}
}
}