forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinaryTreeRecursiveWalker.cs
280 lines (237 loc) · 10.8 KB
/
BinaryTreeRecursiveWalker.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
using System;
using System.Collections.Generic;
using DataStructures.Trees;
using Algorithms.Common;
namespace Algorithms.Trees
{
/// <summary>
/// Simple Recursive Tree Traversal and Search Algorithms.
/// </summary>
public static class BinaryTreeRecursiveWalker
{
/// <summary>
/// Specifies the mode of travelling through the tree.
/// </summary>
public enum TraversalMode
{
InOrder = 0,
PreOrder = 1,
PostOrder = 2
}
/************************************************************************************
* PRIVATE HELPERS SECTION
*
*/
/// <summary>
/// Private helper method for Preorder Traversal.
/// </summary>
private static void PreOrderVisitor<T>(BSTNode<T> BinaryTreeRoot, Action<T> Action) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
return;
Action(BinaryTreeRoot.Value);
BinaryTreeRecursiveWalker.PreOrderVisitor<T>(BinaryTreeRoot.LeftChild, Action);
BinaryTreeRecursiveWalker.PreOrderVisitor<T>(BinaryTreeRoot.RightChild, Action);
}
/// <summary>
/// Private helper method for Inorder Traversal.
/// </summary>
private static void InOrderVisitor<T>(BSTNode<T> BinaryTreeRoot, Action<T> Action) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
return;
BinaryTreeRecursiveWalker.InOrderVisitor<T>(BinaryTreeRoot.LeftChild, Action);
Action(BinaryTreeRoot.Value);
BinaryTreeRecursiveWalker.InOrderVisitor<T>(BinaryTreeRoot.RightChild, Action);
}
/// <summary>
/// Private helper method for Preorder Traversal.
/// </summary>
private static void PostOrderVisitor<T>(BSTNode<T> BinaryTreeRoot, Action<T> Action) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
return;
BinaryTreeRecursiveWalker.PostOrderVisitor<T>(BinaryTreeRoot.LeftChild, Action);
BinaryTreeRecursiveWalker.PostOrderVisitor<T>(BinaryTreeRoot.RightChild, Action);
Action(BinaryTreeRoot.Value);
}
/// <summary>
/// Private helper method for Preorder Searcher.
/// </summary>
private static bool PreOrderSearcher<T>(BSTNode<T> BinaryTreeRoot, T Value, bool IsBinarySearchTree=false) where T : IComparable<T>
{
var current = BinaryTreeRoot.Value;
var hasLeft = BinaryTreeRoot.HasLeftChild;
var hasRight = BinaryTreeRoot.HasRightChild;
if (current.IsEqualTo(Value))
return true;
if (IsBinarySearchTree == true)
{
if (BinaryTreeRoot.HasLeftChild && current.IsGreaterThan(Value))
return PreOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value);
if (BinaryTreeRoot.HasRightChild && current.IsLessThan(Value))
return PreOrderSearcher<T>(BinaryTreeRoot.RightChild, Value);
}
else
{
if (hasLeft && PreOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value) == true)
return true;
if (hasRight && PreOrderSearcher<T>(BinaryTreeRoot.RightChild, Value) == true)
return true;
}
return false;
}
/// <summary>
/// Private helper method for Inorder Searcher.
/// </summary>
private static bool InOrderSearcher<T>(BSTNode<T> BinaryTreeRoot, T Value, bool IsBinarySearchTree=false) where T : IComparable<T>
{
var current = BinaryTreeRoot.Value;
var hasLeft = BinaryTreeRoot.HasLeftChild;
var hasRight = BinaryTreeRoot.HasRightChild;
if (IsBinarySearchTree == true)
{
if (hasLeft && current.IsGreaterThan(Value))
return BinaryTreeRecursiveWalker.InOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value);
if (current.IsEqualTo(Value))
return true;
if (hasRight && current.IsLessThan(Value))
return BinaryTreeRecursiveWalker.InOrderSearcher<T>(BinaryTreeRoot.RightChild, Value);
}
else
{
if (hasLeft && InOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value) == true)
return true;
if (current.IsEqualTo(Value))
return true;
if (hasRight && InOrderSearcher<T>(BinaryTreeRoot.RightChild, Value) == true)
return true;
}
return false;
}
/// <summary>
/// Private helper method for Inorder Searcher.
/// </summary>
private static bool PostOrderSearcher<T>(BSTNode<T> BinaryTreeRoot, T Value, bool IsBinarySearchTree=false) where T : IComparable<T>
{
var current = BinaryTreeRoot.Value;
var hasLeft = BinaryTreeRoot.HasLeftChild;
var hasRight = BinaryTreeRoot.HasRightChild;
if (IsBinarySearchTree == true)
{
if (hasLeft && current.IsGreaterThan(Value))
return BinaryTreeRecursiveWalker.PostOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value);
if (hasRight && current.IsLessThan(Value))
return BinaryTreeRecursiveWalker.PostOrderSearcher<T>(BinaryTreeRoot.RightChild, Value);
if (current.IsEqualTo(Value))
return true;
}
else
{
if (hasLeft && PostOrderSearcher<T>(BinaryTreeRoot.LeftChild, Value) == true)
return true;
if (hasRight && PostOrderSearcher<T>(BinaryTreeRoot.RightChild, Value) == true)
return true;
if (current.IsEqualTo(Value))
return true;
}
return false;
}
/************************************************************************************
* PUBLIC API SECTION
*
*/
/// <summary>
/// Recusrsivley walks the tree and prints the values of all nodes.
/// By default this method traverses the tree in inorder fashion.
/// </summary>
public static void PrintAll<T>(BSTNode<T> BinaryTreeRoot, TraversalMode Mode=TraversalMode.InOrder) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
throw new ArgumentNullException("Tree root cannot be null.");
var printAction = new Action<T>((T nodeValue) =>
System.Console.Write(String.Format("{0} ", nodeValue)));
BinaryTreeRecursiveWalker.ForEach(BinaryTreeRoot, printAction, Mode);
System.Console.WriteLine();
}
/// <summary>
/// Recursively Visits All nodes in tree applying a given action to all nodes.
/// By default this method traverses the tree in inorder fashion.
/// </summary>
public static void ForEach<T>(BSTNode<T> BinaryTreeRoot, Action<T> Action, TraversalMode Mode=TraversalMode.InOrder) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
throw new ArgumentNullException("Tree root cannot be null.");
if (Action == null)
throw new ArgumentNullException("Action<T> Action cannot be null.");
// Traverse
switch (Mode)
{
case TraversalMode.PreOrder:
BinaryTreeRecursiveWalker.PreOrderVisitor(BinaryTreeRoot, Action);
return;
case TraversalMode.InOrder:
BinaryTreeRecursiveWalker.InOrderVisitor(BinaryTreeRoot, Action);
return;
case TraversalMode.PostOrder:
BinaryTreeRecursiveWalker.PostOrderVisitor(BinaryTreeRoot, Action);
return;
default:
BinaryTreeRecursiveWalker.InOrderVisitor(BinaryTreeRoot, Action);
return;
}
}
/// <summary>
/// Search the tree for the specified value.
/// By default this method traverses the tree in inorder fashion.
/// </summary>
public static bool Contains<T>(BSTNode<T> BinaryTreeRoot, T Value, TraversalMode Mode=TraversalMode.InOrder) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
throw new ArgumentNullException("Tree root cannot be null.");
// Traverse
// Traverse
switch (Mode)
{
case TraversalMode.PreOrder:
return BinaryTreeRecursiveWalker.PreOrderSearcher(BinaryTreeRoot, Value);
case TraversalMode.InOrder:
return BinaryTreeRecursiveWalker.InOrderSearcher(BinaryTreeRoot, Value);
case TraversalMode.PostOrder:
return BinaryTreeRecursiveWalker.PostOrderSearcher(BinaryTreeRoot, Value);
default:
return BinaryTreeRecursiveWalker.InOrderSearcher(BinaryTreeRoot, Value);
}
}
/// <summary>
/// Search the tree for the specified value.
/// By default this method traverses the tree in inorder fashion.
/// </summary>
public static bool BinarySearch<T>(BSTNode<T> BinaryTreeRoot, T Value, TraversalMode Mode=TraversalMode.InOrder) where T : IComparable<T>
{
if (BinaryTreeRoot == null)
throw new ArgumentNullException("Tree root cannot be null.");
// Traverse
// Traverse
switch (Mode)
{
case TraversalMode.PreOrder:
return BinaryTreeRecursiveWalker.PreOrderSearcher(BinaryTreeRoot, Value, IsBinarySearchTree: true);
case TraversalMode.InOrder:
return BinaryTreeRecursiveWalker.InOrderSearcher(BinaryTreeRoot, Value, IsBinarySearchTree: true);
case TraversalMode.PostOrder:
return BinaryTreeRecursiveWalker.PostOrderSearcher(BinaryTreeRoot, Value, IsBinarySearchTree:true);
default:
return BinaryTreeRecursiveWalker.InOrderSearcher(BinaryTreeRoot, Value, IsBinarySearchTree: true);
}
}
/// <summary>
/// Search the tree for all matches for a given predicate function.
/// By default this method traverses the tree in inorder fashion.
/// </summary>
public static List<T> FindAllMatches<T>(BSTNode<T> BinaryTreeRoot, Predicate<T> Match, TraversalMode Mode=TraversalMode.InOrder) where T : IComparable<T>
{
throw new NotImplementedException();
}
}
}