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
- Union-find
- 유니온파인드
- 코딩테스트
- 카카오인턴
- 코테
- 투포인터
- 카카오
- Algorithm
- 스마일게이트
- BFS
- Smilegate
- 서버개발캠프
- 식단
- c++
- 1편
- BaekJoon
- 보석쇼핑
- LIS #Algorithm #요소추적
- 중반부
- 알고리즘
- 삼성 #코테 #2020상반기 #c++
- 백준
- 소감
- IBK기업은행 #기업은행 #디지털 #직무 #정리
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 101. Symmetric Tree 본문
반응형
난이도는 easy였지만...생각보다? 이런 문제류를 처음 풀어본 사람이면 충분히 어려웠을 만한 문제였다.
분류로는 BFS로 되어 있었지만,,, 생각보다 간단한 재귀로 풀 수 있다.
[메인 로직]
1. 주어진 root 트리를 각각의 다른 트리라고 생각하고 2개의 트리를 비교하는 형식으로 진행한다.
2. 즉, isMirror(root, root) 함수를 돌아서 tree1->left와 tree2->right이 같은지, tree1->right과 tree2->left가 같은지 확인하면 된다! (Symmetric인지 확인한는 것이기 때문에 => 밑의 사진 참고)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Solution {
public:
bool isMirror(TreeNode* tree1, TreeNode* tree2){
if(tree1==NULL && tree2==NULL) return true;
if(tree1==NULL || tree2==NULL) return false;
if(tree1->val!=tree2->val) return false;
return isMirror(tree1->left, tree2->right) && isMirror(tree1->right, tree2->left);
}
bool isSymmetric(TreeNode* root) {
return isMirror(root, root);
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 103. Binary Tree Zigzag Level Order Traversal (0) | 2021.01.02 |
---|---|
LeetCode : 102. Binary Tree Level Order Traversal (0) | 2021.01.01 |
LeetCode : 100. Same Tree (0) | 2020.12.31 |
LeetCode : 99. Recover Binary Search Tree (0) | 2020.12.30 |
LeetCode : 98. Validate Binary Search Tree (0) | 2020.12.29 |
Comments