티스토리 뷰
Binary Tree(이진트리) 의 node와 그 node의 children을 invert 하는 문제.
node뿐 아니라 그 밑에 속해있는 자식들까지 swipe해야하기때문에 recursive function(재귀함수)을 사용해야한다.
Solution 1
var invertTree = function(root) {
//재귀의 정지값->root가 있을때 까지.
if(root){
swap(root); //swipe children
invertTree(root.left); //subtree의 children에게도 같은 process적용을 위해 recursive
invertTree(root.right);
}
return root;
};
var swap = function(root){
let left = root.left;
root.left = root.right;
root.right = left;
}
Solution 2.
Reference
'Algorithms' 카테고리의 다른 글
Cut the sticks (0) | 2020.12.18 |
---|---|
Equalize the Array (0) | 2020.12.11 |
Sequence Equation (0) | 2020.10.30 |
Viral Advertising (0) | 2020.10.22 |
Angry Professor (0) | 2020.10.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Object type casting
- repeat()
- math.max
- ... in Javascript
- java
- 알고리즘
- algorithm
- hackerrank
- rest parameter
- javascript
- spring boot application
- compareTo()
- easy javascript algorithm
- 프로그래머스 알고리즘문제
- hackerrank javascript solution
- 프로그래머스 알고리즘
- HackerRank Algorithm
- hackerrank javascript
- code refactoring
- easy algorithm
- hackerrank solution
- string class in java
- C++
- Collection Framework
- 프로그래머스
- Javascript Algorithm
- math.abs
- equals()
- substring()
- HashMap
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함