forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maximumDepthOfBinaryTree.java
47 lines (41 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Source : https://oj.leetcode.com/problems/maximum-depth-of-binary-tree/
// Inspired by : http://www.jiuzhang.com/solutions/maximum-depth-of-binary-tree/
// Author : Lei Cao
// Date : 2015-10-03
/**********************************************************************************
*
* 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.
*
**********************************************************************************/
package maximumDepthOfBinaryTree;
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class maximumDepthOfBinaryTree {
public int maxDepth(TreeNode root) {
if (root == null) {
return 0;
}
return theDepth(root);
}
private int theDepth(TreeNode root) {
int leftDepth = 1;
int rightDepth = 1;
if (root.left != null) {
leftDepth = theDepth(root.left) + 1;
}
if (root.right != null) {
rightDepth = theDepth(root.right) + 1;
}
return Math.max(leftDepth, rightDepth);
}
}