UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

8 lines (7 loc) 289 B
import { Graph } from "../../../graph/Graph"; import { GraphEdge } from "../../../graph/GraphEdge"; import { GraphVertex } from "../../../graph/GraphVertex"; export declare function kruskal<T>(graph: Graph<T>): { visitedVertices: GraphVertex<T>[]; visitedEdges: GraphEdge<T>[]; };