Skip to main content

Interface: TraversalResult<T>

Defined in: graph.ts:69 Graph traversal result

Type Parameters

T

T

Properties

distances

distances: Map<T, number>
Defined in: graph.ts:75 Distance from source (for BFS)

parents

parents: Map<T, T | null>
Defined in: graph.ts:73 Parent map for path reconstruction

vertices

vertices: T[]
Defined in: graph.ts:71 Vertices in traversal order