forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TreeDrawer.cs
223 lines (177 loc) · 8.19 KB
/
TreeDrawer.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DataStructures.Common;
namespace DataStructures.Trees
{
public static class TreeDrawer
{
/// <summary>
/// Public API.
/// Extension method for BinarySearchTree<T>.
/// Returns a visualized binary search tree text.
/// </summary>
public static string DrawTree<T>(this IBinarySearchTree<T> tree) where T : IComparable<T>
{
int position, width;
return String.Join("\n", _recursivelyDrawTree(tree.Root, out position, out width));
}
public static string DrawTree<TKey, TValue>(this IBinarySearchTree<TKey, TValue> tree, bool includeValues = false) where TKey : IComparable<TKey>
{
int position, width;
return String.Join("\n", _recursivelyDrawTree(tree.Root, out position, out width, includeValues));
}
/// <summary>
/// /// Recusively draws the tree starting from node.
/// To construct a full tree representation concatenate the returned list of strings by '\n'.
///
/// Example:
/// int position, width;
/// var fullTree = String.Join("\n", _recursivelyDrawTree(this.Root, out position, out width));
///
/// Algorithm developed by MIT OCW.
/// http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/readings/binary-search-trees/bstsize_r.py
/// </summary>
/// <param name="node"></param>
/// <param name="positionOutput"></param>
/// <param name="widthOutput"></param>
/// <returns>List of tree levels as strings.</returns>
private static List<string> _recursivelyDrawTree<T>
(BSTNode<T> node, out int positionOutput, out int widthOutput)
where T : IComparable<T>
{
widthOutput = 0;
positionOutput = 0;
if (node == null)
{
return new List<string>();
}
//
// Variables
int leftPosition, rightPosition, leftWidth, rightWidth;
//
// Start drawing
var nodeLabel = Convert.ToString(node.Value);
// Visit the left child
List<string> leftLines = _recursivelyDrawTree(node.LeftChild, out leftPosition, out leftWidth);
// Visit the right child
List<string> rightLines = _recursivelyDrawTree(node.RightChild, out rightPosition, out rightWidth);
// Calculate pads
int middle = Math.Max(Math.Max(2, nodeLabel.Length), (rightPosition + leftWidth - leftPosition + 1));
int position_out = leftPosition + middle / 2;
int width_out = leftPosition + middle + rightWidth - rightPosition;
while (leftLines.Count < rightLines.Count)
leftLines.Add(new String(' ', leftWidth));
while (rightLines.Count < leftLines.Count)
rightLines.Add(new String(' ', rightWidth));
if ((middle - nodeLabel.Length % 2 == 1) && (nodeLabel.Length < middle) && (node.Parent != null && node.IsLeftChild))
nodeLabel += ".";
// Format the node's label
nodeLabel = nodeLabel.PadCenter(middle, '.');
var nodeLabelChars = nodeLabel.ToCharArray();
if (nodeLabelChars[0] == '.')
nodeLabelChars[0] = ' ';
if (nodeLabelChars[nodeLabelChars.Length - 1] == '.')
nodeLabelChars[nodeLabelChars.Length - 1] = ' ';
nodeLabel = String.Join("", nodeLabelChars);
//
// Construct the list of lines.
string leftBranch = node.HasLeftChild ? "/" : " ";
string rightBranch = node.HasRightChild ? "\\" : " ";
List<string> listOfLines = new List<string>()
{
// 0
(new String(' ', leftPosition )) + nodeLabel + (new String(' ', (rightWidth - rightPosition))),
// 1
(new String(' ', leftPosition)) + leftBranch + (new String(' ', (middle - 2))) + rightBranch + (new String(' ', (rightWidth - rightPosition)))
};
//
// Add the right lines and left lines to the final list of lines.
listOfLines.AddRange(leftLines.Zip(rightLines, (leftLine, rightLine) =>
leftLine + (new String(' ', (width_out - leftWidth - rightWidth))) + rightLine));
//
// Return
widthOutput = width_out;
positionOutput = position_out;
return listOfLines;
}
private static List<string> _recursivelyDrawTree<TKey, TValue>
(BSTMapNode<TKey, TValue> node, out int positionOutput, out int widthOutput, bool includeValues = false)
where TKey : IComparable<TKey>
{
widthOutput = 0;
positionOutput = 0;
List<string> listOfLines = new List<string>();
if (node == null)
{
return listOfLines;
}
//
// Variables
string nodeLabel = "";
int padValue = 0;
List<string> leftLines, rightLines;
leftLines = rightLines = new List<string>();
int leftPosition = 0, rightPosition = 0;
int leftWidth = 0, rightWidth = 0;
int middle, position_out, width_out;
//
// Start drawing
if (includeValues == true)
{
nodeLabel = String.Format("<{0}: {1}>", Convert.ToString(node.Key), Convert.ToString(node.Value));
padValue = 4;
}
else
{
nodeLabel = Convert.ToString(node.Key);
padValue = 2;
}
// Visit the left child
leftLines = _recursivelyDrawTree(node.LeftChild, out leftPosition, out leftWidth, includeValues);
// Visit the right child
rightLines = _recursivelyDrawTree(node.RightChild, out rightPosition, out rightWidth, includeValues);
// Calculate pads
middle = Math.Max(Math.Max(padValue, nodeLabel.Length), (rightPosition + leftWidth - leftPosition + 1));
position_out = leftPosition + middle;
width_out = leftPosition + middle + rightWidth - rightPosition;
while (leftLines.Count < rightLines.Count)
leftLines.Add(new String(' ', leftWidth));
while (rightLines.Count < leftLines.Count)
rightLines.Add(new String(' ', rightWidth));
if ((middle - nodeLabel.Length % padValue == 1) && (nodeLabel.Length < middle) && (node.Parent != null && node.IsLeftChild))
nodeLabel += ".";
// Format the node's label
nodeLabel = nodeLabel.PadCenter(middle, '.');
var nodeLabelChars = nodeLabel.ToCharArray();
if (nodeLabelChars[0] == '.')
nodeLabelChars[0] = ' ';
if (nodeLabelChars[nodeLabelChars.Length - 1] == '.')
nodeLabelChars[nodeLabelChars.Length - 1] = ' ';
nodeLabel = String.Join("", nodeLabelChars);
//
// Construct the list of lines.
listOfLines = new List<string>()
{
// 0
(new String(' ', leftPosition )) + nodeLabel + (new String(' ', (rightWidth - rightPosition))),
// 1
(new String(' ', leftPosition)) + "/" + (new String(' ', (middle - padValue))) + "\\" + (new String(' ', (rightWidth - rightPosition)))
};
//
// Add the right lines and left lines to the final list of lines.
listOfLines =
listOfLines.Concat(
leftLines.Zip(
rightLines, (left_line, right_line) =>
left_line + (new String(' ', (width_out - leftWidth - rightWidth))) + right_line)
).ToList();
//
// Return
widthOutput = width_out;
positionOutput = position_out;
return listOfLines;
}
}
}