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 | 31 |
Tags
- 백준
- Smilegate
- 보석쇼핑
- LIS #Algorithm #요소추적
- 중반부
- 서버개발캠프
- 카카오
- Algorithm
- 코딩테스트
- 식단
- 알고리즘
- 소감
- Union-find
- 카카오인턴
- 삼성 #코테 #2020상반기 #c++
- BaekJoon
- c++
- BFS
- 코테
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 1편
- 스마일게이트
- 유니온파인드
- 투포인터
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 104. Maximum Depth of Binary Tree 본문
반응형
정말 간단한 dfs로 트리의 높이를 구하는 문제였다.
머리를 깨워주기 위해..ㅎㅎ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class Solution {
public:
int height = 1;
void countMaxHeight(TreeNode* node, int h){
if(node==NULL){
height = max(height, h);
return;
}
countMaxHeight(node->left, h+1);
countMaxHeight(node->right, h+1);
}
int maxDepth(TreeNode* root) {
if(root==NULL) return 0;
countMaxHeight(root->left, 1);
countMaxHeight(root->right, 1);
return height;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 107. Binary Tree Level Order Traversal II (0) | 2021.01.08 |
---|---|
LeetCode : 14. Longest Common Prefix (0) | 2021.01.07 |
LeetCode : 53. Maximum Subarray (0) | 2021.01.04 |
LeedCode : 40. Combination Sum II (0) | 2021.01.03 |
LeetCode : 39. Combination Sum (0) | 2021.01.03 |
Comments