gpt4 book ai didi

java - 2-3-4树的高度

转载 作者:行者123 更新时间:2023-11-30 11:57:04 25 4
gpt4 key购买 nike

我有一个工作片段可用于包含节点的常规树。现在我只需要摆弄它来处理 2-3-4 棵树,这应该更容易,因为每条路径的距离相同,因为它是平衡的,对吧?

我可以使用的方法包括 getNextChild()split(),当然还有 insert()

public int height() {
return (height(root));
}

private int height(TNode localRoot) {
if(localRoot == null) {
return 0;
}
else {
//Find each sides depth
int lDepth = height(localRoot.leftChild);
int rDepth = height(localRoot.rightChild);

//Use the larger of the two
return (Math.max(lDepth, rDepth) + 1);
}
}

最佳答案

public int height ()
{
TNode cur = root;
int depth = -1;

while ( cur != null )
{
cur = cur.getChild( 0 );
depth++;
}

return depth;
}

关于java - 2-3-4树的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4046550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com