-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdfs.js
41 lines (38 loc) · 1.13 KB
/
dfs.js
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
32
33
34
35
36
37
38
39
40
41
/**
* 深度优先算法
* 深度优先算法是一种用于遍历或搜索树或图的算法。沿着树的深度遍历树的节点,尽可能深的搜索树的分支。
*/
export function DFSTraverse(rootNode, visitor) {
if (!rootNode || typeof visitor !== 'function') {
console.warn('rootNode is empty or visitor is not function');
return;
}
const roots = Array.isArray(rootNode) ? rootNode : [rootNode];
while (roots.length) {
const root = roots.shift();
visitor(root);
if (root.children && root.children.length) {
DFSTraverse(root.children, visitor);
}
}
}
/**
* 深度优先非递归解法
* 使用栈来解决
*/
export function DFSTraverseNR(rootNode, visitor) {
if (!rootNode || typeof visitor !== 'function') {
console.warn('rootNode is empty or visitor is not function');
return;
}
const stack = Array.isArray(rootNode) ? rootNode : [rootNode];
while (stack.length) {
const node = stack.pop();
visitor(node);
if (node.children && node.children.length) {
for (let i = node.children.length - 1; i >= 0; i--) {
stack.push(node.children[i]);
}
}
}
}