Tree TraversalBreadth First SearchOn this pageBreadth First SearchTraverses a tree level by level using a queue.Interactive VisualizationLoading visualization…Usagesrc/sample/bfs.tsimport { bfs, Node } from 'athro';const root = new Node(3);const result = bfs(root);