Loading subject…
Chinese postman problem
The problem of finding a shortest closed route that traverses every edge of a weighted graph at least once.
Complete graph
A graph where every pair of distinct vertices is joined by an edge.
Cycle
A path that starts and ends at the same vertex and does not pass through any vertex more than once.
Degree
The **degree** of a vertex is the number of edges meeting at that vertex (counting multiple edges separately).
Eulerian circuit
A trail that uses every edge exactly once and ends at the starting vertex.
Eulerian trail
A trail that uses every edge exactly once but starts and ends at different vertices.
Hamiltonian cycle
A Hamiltonian path that returns to its starting vertex.
Hamiltonian path
A path that visits every vertex exactly once.
Trail
A walk through a graph that does not repeat any edge.