-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104. Maximum Depth of Binary Tree.ts
56 lines (49 loc) · 1.18 KB
/
104. Maximum Depth of Binary Tree.ts
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
{
/**
* Runtime 143 ms Beats 9.68%
* Memory 48.3 MB Beats 5.35%
*/
/**
* Definition for a binary tree node.
*/
class TreeNode {
val: number;
left: TreeNode | null;
right: TreeNode | null;
constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
this.val = val === undefined ? 0 : val;
this.left = left === undefined ? null : left;
this.right = right === undefined ? null : right;
}
}
const maxDepth = (root: TreeNode | null): number => {
if (!root) {
return 0;
}
let maxDepth = 1;
const queue: [TreeNode | null, number][] = [[root, 1]];
while (queue.length) {
const [currentNode, depth] = queue.shift()!;
maxDepth = Math.max(maxDepth, depth);
if (!currentNode) {
continue;
}
if (currentNode.right) {
queue.push([currentNode.right, depth + 1]);
}
if (currentNode.left) {
queue.push([currentNode.left, depth + 1]);
}
}
return maxDepth;
};
console.log(
maxDepth(
new TreeNode(
3,
new TreeNode(9),
new TreeNode(20, new TreeNode(15), new TreeNode(7))
)
)
); // 3
}