CHINESE POST MAN and Dijkstra
CHINESE POST MAN and Dijkstra
INTRODUCTION
The Chinese Postman Problem (CPP),
introduced by the Chinese
mathematician Kwan Mei-Ko in 1962, is a
classic algorithm in graph theory. It
seeks to find the shortest closed path or
circuit that visits every edge of a graph
at least once. This problem is
particularly relevant in scenarios such
as route planning for postal delivery,
EXPLANATION
garbage collection, and street The Chinese Postman Problem
sweeping. aims to determine the most
efficient route for a postman to
KWAN MEI-KO'S CONTRIBUTION deliver mail without retracing any
steps unnecessarily. The primary
Kwan Mei-Ko developed the foundational
goal is to minimize the total
algorithm for solving the CPP, which
involves:
distance or cost. The problem can
1.Identifying vertices with an odd degree. be formalized as finding an
2.Pairing these vertices in such a way that Eulerian circuit in a graph, where
the sum of the distances between paired each edge is traversed exactly
vertices is minimized. once. If an Eulerian circuit does not
3.Adding edges between paired vertices to exist, additional edges are
ensure all vertices have even degrees, thus
duplicated to create one.
forming an Eulerian circuit.
BS MATHEMATICS III_2024
STEPS IN SOLVING
CHINESE POSTMAN
ALGORITHM
REPRESENT THE GRAPH
Model the Problem: Represent the street network
as a graph G=(V,E), where V is the set of vertices
(intersections) and E is the set of edges (streets).
1