c# – 简单二叉树

前端之家收集整理的这篇文章主要介绍了c# – 简单二叉树前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以,过去一个月我一直在学习C#,而目前我正在与Binary Trees进行斗争.

我的问题是,如何将我的树调用到控制台窗口?
我试过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; }
    }
}

有没有其他方法可以调用我的树?或者我做错了什么?

解决方法

它之所以显示54是因为那就是(int)’6’是什么!

你正在调用tree.Data,在这种情况下返回’6’强制转换为int.

我想你要做的就是返回6,你可以通过使用来做

new Node<char>('6');

或者

new Node<int>(6);

(More in separate answer,removed for clarity)

原文链接:https://www.f2er.com/csharp/244035.html

猜你在找的C#相关文章