Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 707 Bytes

55(1)-二叉树的深度~Easy.md

File metadata and controls

37 lines (30 loc) · 707 Bytes

二叉树的深度

输入一棵二叉树的根节点,求该树的深度。从根节点到叶节点依次经过的节点(含根、叶节点)形成树的一条路径,最长路径的长度为树的深度。

例如:

给定二叉树 [3,9,20,null,null,15,7]

    3
   / \
  9  20
    /  \
   15   7
返回它的最大深度 3 

提示:

  • 节点总数 <= 10000
/**
 * Definition for a binary tree node.
 * function TreeNode(val) {
 *     this.val = val;
 *     this.left = this.right = null;
 * }
 */
/**
 * @param {TreeNode} root
 * @return {number}
 */
var maxDepth = function (root) {
  return root ? 1 + Math.max(maxDepth(root.left), maxDepth(root.right)) : 0;
};