-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
BinarySearchTreeSorter.cs
109 lines (93 loc) · 3.52 KB
/
BinarySearchTreeSorter.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Collections.Generic;
using Algorithms.Common;
namespace Algorithms.Sorting
{
public static class BinarySearchTreeSorter
{
/// <summary>
/// Unbalanced Binary Search Tree sort.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="collection"></param>
public static void UnbalancedBSTSort<T>(this List<T> collection) where T : IComparable<T>
{
if (collection.Count == 0)
return;
Node<T> treeRoot = new Node<T>() { Value = collection[0] };
// Get a handle on root.
for (int i = 1; i < collection.Count; ++i)
{
var currentNode = treeRoot;
var newNode = new Node<T>() { Value = collection[i] };
while (true)
{
// Go left
if (newNode.Value.IsLessThan<T>(currentNode.Value))
{
if (currentNode.Left == null)
{
newNode.Parent = currentNode;
currentNode.Left = newNode;
break;
}
currentNode = currentNode.Left;
}
// Go right
else
{
if (currentNode.Right == null)
{
newNode.Parent = currentNode;
currentNode.Right = newNode;
break;
}
currentNode = currentNode.Right;
}
}//end-while
}//end-for
// Reference handle to root again.
collection.Clear();
var treeRootReference = treeRoot;
_inOrderTravelAndAdd(treeRootReference, ref collection);
treeRootReference = treeRoot = null;
}
/// <summary>
/// Used to travel a node's subtrees and add the elements to the collection.
/// </summary>
/// <typeparam name="T">Type of tree elements.</typeparam>
/// <param name="currentNode">Node to start from.</param>
/// <param name="collection">Collection to add elements to.</param>
private static void _inOrderTravelAndAdd<T>(Node<T> currentNode, ref List<T> collection) where T : IComparable<T>
{
if (currentNode == null)
return;
_inOrderTravelAndAdd<T>(currentNode.Left, ref collection);
collection.Add(currentNode.Value);
_inOrderTravelAndAdd<T>(currentNode.Right, ref collection);
}
/// <summary>
/// Minimal BST Node class, used only for unbalanced binary search tree sort.
/// </summary>
/// <typeparam name="T"></typeparam>
private class Node<T> : IComparable<Node<T>> where T : IComparable<T>
{
public T Value { get; set; }
public Node<T> Parent { get; set; }
public Node<T> Left { get; set; }
public Node<T> Right { get; set; }
public Node()
{
Value = default(T);
Parent = null;
Left = null;
Right = null;
}
public int CompareTo(Node<T> other)
{
if (other == null) return -1;
return this.Value.CompareTo(other.Value);
}
}
}
}