UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

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