104. Maximum Depth of Binary Tree
104. Maximum Depth of Binary Tree
Description
Difficulty: Easy
Related Topics: Tree, Depth-First Search, Breadth-First Search, Binary Tree
Given the root of a binary tree, return its maximum depth.
A binary tree’s maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
Example 1:

1 | Input: root = [3,9,20,null,null,15,7] |
Example 2:
1 | Input: root = [1,null,2] |
Constraints:
- The number of nodes in the tree is in the range [0, 104].
-100 <= Node.val <= 100
Hints/Notes
- 2023/08/15
- Think about the tree’s left and right
- 0x3F’s solution(checked)
Solution
Language: C++
1 | /** |