forked from srishilesh/Data-Structure-and-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104_Maximum_depth_of_binary_tree
77 lines (73 loc) · 2.1 KB
/
104_Maximum_depth_of_binary_tree
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// https://leetcode.com/problems/maximum-depth-of-binary-tree/
/**
* 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;
* }
* }
*/
// BFS APPROACH
class Solution {
public int maxDepth(TreeNode root) {
if (root == null)
return 0;
Queue<TreeNode> queue = new LinkedList();
queue.add(root);
int level = 1;
while (!queue.isEmpty()) {
int size = queue.size();
while (size > 0) {
TreeNode node = queue.poll();
if (node.left != null)
queue.add(node.left);
if (node.right != null)
queue.add(node.right);
size --;
}
level ++;
}
return level - 1;
}
}
// DFS APPROACH
// class Solution {
// public int maxDepth(TreeNode root) {
// if (root == null)
// return 0;
// return 1 + Math.max(maxDepth(root.left), maxDepth(root.right));
// }
// }
// PYTHON VERSION
class Solution:
def maxDepth(self, root: TreeNode) -> int:
queue = []
if (root == None):
return 0
queue.append(root)
level = 1
while (len(queue) > 0):
size = len(queue)
while size > 0:
node = queue.pop(0)
if node != None and node.left != None:
queue.append(node.left)
if node != None and node.right != None:
queue.append(node.right)
size -= 1
level += 1
return level - 1
class Solution:
def maxDepth(self, root: TreeNode) -> int:
if (root == None):
return 0
if (root.left == None and root.right == None):
return 1
return 1 + max(self.maxDepth(root.left), self.maxDepth(root.right))