height balanced binary tree
基本解釋
- [計算機(jī)科學(xué)技術(shù)]二元樹高度平衡
英漢例句
- Given a binary tree, determine if it is height-balanced.
給出一個二叉樹,判斷它高度是不是平衡的。 - For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees ofeverynode never differ by more than 1.
注意平衡樹的定義,每一個點(diǎn)的左右子樹高度差不超過1,并不是葉子結(jié)點(diǎn)的最大深度和最小深度不超過1。 - For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.
對于這個問題,一個高度平衡的二叉樹是指每個節(jié)點(diǎn)的兩個子節(jié)點(diǎn)的深度的差異都不超過1的二叉樹。
雙語例句
專業(yè)釋義
- 二元樹高度平衡