所以,在过去的一个月里,我一直在学习 C#,目前我正在努力学习二叉树。
我的问题是我如何将我的树调用到控制台窗口?我试过Console.WriteLine(tree.Data);
但这似乎将 54 写入我的控制台窗口。
如果您需要检查,这是我的代码:
主文件
static void Main(string[] args)
{
//Creating the Nodes for the Tree
Node<int> tree = new Node<int>('6');
tree.Left = new Node<int>('2');
tree.Right = new Node<int>('5');
Console.WriteLine("Binary Tree Display");
Console.WriteLine(tree.Data);
Console.ReadLine();
}
节点类
class Node<T> where T : IComparable
{
private T data;
public Node<T> Left, Right;
public Node(T item)
{
data = item;
Left = null;
Right = null;
}
public T Data
{
set { data = value; }
get { return data; }
}
}
还有其他调用我的树的方法吗?还是我做错了什么?