-
Notifications
You must be signed in to change notification settings - Fork 0
/
VisualTreeNode.cs
79 lines (71 loc) · 1.82 KB
/
VisualTreeNode.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
/*
*
* Create by Alimsah YILDIRIM on 3/5/2019
*
* @file VisualTreeNode.cs
* @url https://github.com/alimsahy/BinaryTreeVisualizer
*
*
*/
namespace RedBlackTree
{
public class VisualTreeNode
{
/// <summary>
/// Gets or sets the parent.
/// </summary>
/// <value>The parent.</value>
public VisualTreeNode Parent { get; set; }
/// <summary>
/// Gets or sets the left.
/// </summary>
/// <value>The left.</value>
public VisualTreeNode Left { get; set; }
/// <summary>
/// Gets or sets the right.
/// </summary>
/// <value>The right.</value>
public VisualTreeNode Right { get; set; }
/// <summary>
/// Gets or sets the node.
/// </summary>
/// <value>The node.</value>
public TreeNode Node { get; set; }
/// <summary>
/// Gets or sets the text.
/// </summary>
/// <value>The text.</value>
public string Text { get; set; }
/// <summary>
/// Gets or sets the start position.
/// </summary>
/// <value>The start position.</value>
public int StartPos { get; set; }
/// <summary>
/// Gets the size.
/// </summary>
/// <value>The size.</value>
public int Size
{
get
{
return Text.Length;
}
}
/// <summary>
/// Gets or sets the end position.
/// </summary>
/// <value>The end position.</value>
public int EndPos
{
get
{
return StartPos + Size;
}
set
{
StartPos = value - Size;
}
}
}
}