当前位置: 代码迷 >> 综合 >> LeetCode:104_Maximum Depth of Binary Tree
  详细解决方案

LeetCode:104_Maximum Depth of Binary Tree

热度:24   发布时间:2023-12-07 00:48:37.0

题目描述

 

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

public class Solution {public int maxDepth(TreeNode root) {if(root == null)return 0;int l=maxDepth(root.left);int r=maxDepth(root.right);if(l>r)return l+1;elsereturn r+1;}
}

 

  相关解决方案