일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dsYM
- 분산원장
- viewcontroller
- External Call
- Blockchain
- 알고리즘
- reentrancy
- .dsym
- 재진입공격
- DPOS
- Mining
- 백준
- 이더리움
- ethereum
- POS
- 블록체인
- Xcode
- Report
- PBFT
- ios
- solidity
- 암호화폐
- 비트코인
- Crash
- view 이동
- Algorithm
- pow
- 프로그래머스
- DEFI
- 블록체인 기술
Archives
- Today
- Total
개발하기좋은날
treeDFS 본문
반응형
let dfs = function (node) {
let values = [node.value];
node.children.forEach((n) => {
values = values.concat(dfs(n));
});
return values;
};
let Node = function (value) {
this.value = value;
this.children = [];
};
Node.prototype.addChild = function (child) {
this.children.push(child);
return child;
};
let root = new Node(1);
let rootChild1 = root.addChild(new Node(2));
let rootChild2 = root.addChild(new Node(3));
let leaf1 = rootChild1.addChild(new Node(4));
let leaf2 = rootChild1.addChild(new Node(5));
let output = dfs(root);
console.log(output); // --> [1, 2, 4, 5, 3]
leaf1.addChild(new Node(6));
rootChild2.addChild(new Node(7));
output = dfs(root);
console.log(output); // --> [1, 2, 4, 6, 5, 3, 7]
DFS 깊은 탐색 방법
반응형
'Algorithm' 카테고리의 다른 글
binarySearch (0) | 2022.06.07 |
---|---|
largestProductOfThree (0) | 2022.06.02 |
Bubble Sort (0) | 2022.05.25 |
isSubsetOf (0) | 2022.05.24 |
fibonacci (0) | 2022.05.23 |
Comments