-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104.maximum-depth-of-binary-tree.java
59 lines (50 loc) · 1.25 KB
/
104.maximum-depth-of-binary-tree.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
48
49
50
51
52
53
54
55
56
57
58
59
import java.util.LinkedList;
import java.util.Queue;
import javax.swing.tree.TreeNode;
import jdk.nashorn.internal.ir.TryNode;
/*
* @lc app=leetcode id=104 lang=java
*
* [104] Maximum Depth of Binary Tree
*/
// @lc code=start
/**
* Definition for a binary tree node. public class TreeNode { int val; TreeNode
* left; TreeNode right; TreeNode() {} TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) { this.val = val; this.left
* = left; this.right = right; } }
*/
// class Solution {
// public int maxDepth(TreeNode root) {
// if (root == null)
// return 0;
// Queue<TreeNode> q = new LinkedList<>();
// q.add(root);
// int depth = 1, maxDepth = 0;
// while (!q.isEmpty()) {
// int currLevelSize = q.size();
// for (int i = 0; i < currLevelSize; i++) {
// TreeNode node = q.poll();
// if (node.left == null && node.right == null) {
// maxDepth = depth;
// }
// if (node.left != null) {
// q.add(node.left);
// }
// if (node.right != null) {
// q.add(node.right);
// }
// }
// depth++;
// }
// return maxDepth;
// }
// }
class Solution {
public int maxDepth(TreeNode root) {
if (root == null)
return 0;
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}
// @lc code=end