美文网首页
Tree:二叉树深度

Tree:二叉树深度

作者: 敲一手烂代码 | 来源:发表于2016-05-18 14:09 被阅读8次
    public static int test4(BinTreeNode node) {
            if (node == null) {
                return 0;
            } else {
                return 1+Math.max(test4(node.left), test4(node.right));
            }
            
        }
    

    相关文章

      网友评论

          本文标题:Tree:二叉树深度

          本文链接:https://www.haomeiwen.com/subject/phdwrttx.html