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.
Note: A leaf is a node with no children.
Example:
Given binary tree [3,9,20,null,null,15,7],
return 3
문제 풀이:
-난이도 easy
recursion 사용
현재 노드가 nullptr이면 0을 리턴
그렇지 않으면 1씩 더해서 리턴한다. 이 때 왼쪽과 오른쪽 중 큰 값에 1을 더해서 리턴한다.
class Solution {
public:
int maxDepth(TreeNode* root) {
if(!root){
return 0;
}
return 1+ max(maxDepth(root->left), maxDepth(root->right));
}
};
'알고리즘 문제풀이 > leetcode' 카테고리의 다른 글
[leetcode 105] Construct Binary Tree from Preorder and Inorder Traversal (0) | 2020.10.24 |
---|---|
[leetcode 78] Subsets (0) | 2020.10.24 |
[leetcode 200] Number of Islands (0) | 2020.10.23 |
[leetcode 207] Course Schedule (0) | 2020.10.23 |
[leetcode 101] Symmetric Tree (0) | 2020.10.22 |
댓글