第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何打印樹的高度?

如何打印樹的高度?

C#
ITMISS 2023-08-13 16:29:27
我有以下填充二叉樹(不是 BST)的代碼如何獲取樹的高度并將其連同其高度一起打???int[] values = new int[] {1, 2, 3, 4, 5};BinaryTree tree = new BinaryTree(values);class BinaryTree{    int value;    BinaryTree left;    BinaryTree right;    public BinaryTree(int[] values) : this(values, 0) {}    BinaryTree(int[] values, int index)    {        Load(this, values, index);    }    void Load(BinaryTree tree, int[] values, int index)    {        this.value = values[index];        if (index * 2 + 1 < values.Length)        {            this.left = new BinaryTree(values, index * 2 + 1);        }        if (index * 2 + 2 < values.Length)        {            this.right = new BinaryTree(values, index * 2 + 2);        }    }    int getDepth()    {      //code to get height here    }}
查看完整描述

1 回答

?
吃雞游戲

TA貢獻1829條經(jīng)驗 獲得超7個贊

您需要遍歷所有節(jié)點并檢查高度;

   depth = 1 + max(left.depth, right.depth)

無論如何,您需要檢查是否為空。

C#代碼:

   return 1 + Math.Max(left?.getDepth() ?? 0, right?.getDepth() ?? 0)


查看完整回答
反對 回復(fù) 2023-08-13
  • 1 回答
  • 0 關(guān)注
  • 157 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號