Interface: TraversalResult<T>
Defined in: graph.ts:69 Graph traversal resultType Parameters
T
T
Properties
distances
distances:Defined in: graph.ts:75 Distance from source (for BFS)Map<T,number>
parents
parents:Defined in: graph.ts:73 Parent map for path reconstructionMap<T,T|null>
vertices
vertices: T[]
Defined in: graph.ts:71
Vertices in traversal order