Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IAC
- 자바스크립트
- leetcode
- terraform
- YAML
- IAM
- Kubernetes
- 쿠버네티스
- asgi
- elasticsearch
- kernel
- asyncio
- EC2
- K8S
- ansible
- AWS
- event loop
- intervals
- FastAPI
- Deployment
- POD
- github
- Service
- Python
- Django
- docker
- WSGI
- dockerfile
- ebs
- EKS
Archives
- Today
- Total
궁금한게 많은 개발자 노트
[ leetcode ] 104. Maximum Depth of Binary Tree 본문
Binary Tree의 가장 깊은 depth의 크기를 반환하는 문제입니다. 재귀적으로 현재 노드 기준에서 왼쪽, 오른쪽 자식의 depth중 큰 값에 + 1하며 반환하면 root에서 가장 깊은 depth를 반환할 수 있습니다.
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
int maxDepth(TreeNode* root) {
if (!root) return 0;
int left = maxDepth(root->left);
int right = maxDepth(root->right);
return 1 + max(left, right);
}
};
'Algorithm' 카테고리의 다른 글
[ leetcode ] 3. Longest Substring Without Repeating Characters (0) | 2023.07.07 |
---|---|
[ leetcode ] 21. Merge Two Sorted Lists (0) | 2023.07.07 |
[ leetcode ] 24. Swap Nodes in Pairs (0) | 2023.07.07 |
[ leetcode ] 859. Buddy Strings (0) | 2023.07.07 |
[ leetcode ] 112. Path Sum (0) | 2023.05.09 |
Comments