forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaximumDepthOfBinaryTree.java
31 lines (25 loc) · 1.14 KB
/
MaximumDepthOfBinaryTree.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.stevesun.solutions;
import com.stevesun.common.classes.TreeNode;
/**104. Maximum Depth of Binary Tree
*
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 MaximumDepthOfBinaryTree {
//more verbose version
public int maxDepth(TreeNode root) {
if(root == null) return 0;
int leftDepth = 0;
if(root.left != null) leftDepth = maxDepth(root.left)+1;
int rightDepth = 0;
if(root.right != null) rightDepth = maxDepth(root.right)+1;
return Math.max(1, Math.max(leftDepth, rightDepth));//the reason we need to max with 1 here is actually
//for this case: if(root != null), it's implicit here, because we checked root.left != null and root.right != null
//then it comes to root != null
//example test case for the above scenario: nums = {1,1,1}
}
//more concise version
public int maxDepth_shorter_version(TreeNode root) {
if(root == null) return 0;
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}