UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

4 lines (3 loc) 203 B
import { Graph } from "../../../graph/Graph"; import { GraphVertex } from "../../../graph/GraphVertex"; export declare function breadthFirstSearch<T>(graph: Graph<T>, startVertex?: GraphVertex<T>): T[];