美文网首页
leetcode-104-二叉树深度

leetcode-104-二叉树深度

作者: kayleeWei | 来源:发表于2021-03-29 01:07 被阅读0次

    // https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/
    var maxDepth = function(root) {
    if (!root) return 0;

    const leftDepth = maxDepth(root.left);
    const rightDepth = maxDepth(root.right);

    return leftDepth > rightDepth ? leftDepth + 1 : rightDepth + 1;
    };

    相关文章

      网友评论

          本文标题:leetcode-104-二叉树深度

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