forked from TheAlgorithms/C-Sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinaryInsertionSorter.cs
72 lines (66 loc) · 2.63 KB
/
BinaryInsertionSorter.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
67
68
69
70
71
72
using System;
using System.Collections.Generic;
namespace Algorithms.Sorters.Comparison
{
/// <summary>
/// TODO.
/// </summary>
/// <typeparam name="T">TODO. 2.</typeparam>
public class BinaryInsertionSorter<T> : IComparisonSorter<T>
{
/// <summary>
/// Sorts array using specified comparer,
/// variant of insertion sort where binary search is used to find place for next element
/// internal, in-place, unstable,
/// time complexity: O(n^2),
/// space complexity: O(1),
/// where n - array length.
/// </summary>
/// <param name="array">Array to sort.</param>
/// <param name="comparer">Compares elements.</param>
public void Sort(T[] array, IComparer<T> comparer)
{
for (var i = 1; i < array.Length; i++)
{
var target = array[i];
var moveIndex = i - 1;
var targetInsertLocation = BinarySearch(array, 0, moveIndex, target, comparer);
Array.Copy(array, targetInsertLocation, array, targetInsertLocation + 1, i - targetInsertLocation);
array[targetInsertLocation] = target;
}
}
/// <summary>Implementation of Binary Search using an iterative approach.</summary>
/// <param name="array">
/// An array of values sorted in ascending order between the index values left and right to search
/// through.
/// </param>
/// <param name="from">Left index to search from (inclusive).</param>
/// <param name="to">Right index to search to (inclusive).</param>
/// <param name="target">The value to find placefor in the provided array.</param>
/// <param name="comparer">TODO.</param>
/// <returns>The index where to insert target value.</returns>
private static int BinarySearch(T[] array, int from, int to, T target, IComparer<T> comparer)
{
var left = from;
var right = to;
while (right > left)
{
var middle = (left + right) / 2;
var comparisonResult = comparer.Compare(target, array[middle]);
if (comparisonResult == 0)
{
return middle + 1;
}
if (comparisonResult > 0)
{
left = middle + 1;
}
else
{
right = middle - 1;
}
}
return comparer.Compare(target, array[left]) < 0 ? left : left + 1;
}
}
}