图结构
const graph = {
0: [1, 2],
1: [2, 4],
2: [0, 3],
3: [],
4: []
}
- 深度优先
const dfs = (root) => {
const visited = new Set()
const fn = (n) => {
console.log(n)
visited.add(n)
graph[n].forEach(c => {
if (!visited.has(c)) {
fn(c)
}
})
}
fn(root)
}
dfs(0)
- 广度优先
const bfs = (root) => {
const visited = new Set()
const q = [root]
visited.add(root)
while(q.length) {
const n = q.shift()
console.log(n)
graph[n].forEach(c => {
if (!visited.has(c)) {
q.push(c)
visited.add(c)
}
})
}
}
bfs(0)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。