美文网首页
二叉树的深度

二叉树的深度

作者: 帅帅的mum | 来源:发表于2020-10-21 09:35 被阅读0次

    const maxDepth = (root) => {

      // 1. 如果没下一层了,返回 0

      if (!root) {

        return 0;

      }

      // 2. 返回左右子树中最深的那一层

      return Math.max(maxDepth(root.left) + 1, maxDepth(root.right) + 1);

    };

    相关文章

      网友评论

          本文标题:二叉树的深度

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