Skip to content

Instantly share code, notes, and snippets.

@WEEFAA
Created November 16, 2022 14:31
Show Gist options
  • Select an option

  • Save WEEFAA/29143c7849230bbf89586a417ae2538f to your computer and use it in GitHub Desktop.

Select an option

Save WEEFAA/29143c7849230bbf89586a417ae2538f to your computer and use it in GitHub Desktop.
a.bfs
// -adj-node -visited
function bfs(node){
let queue = [node]
while(queue.length > 0){
const v = queue.shift()
console.log(v.data)
if(v.children){
queue.push(...v.children)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment