Travelling Salesman Problem (TSP)

Note:

The images below were generated using my output files on a graph visualizer.


Minimum Spanning Tree

Goal: Find the subset of edges that connects all vertices in a graph with the minimum total weight.

Output: Total MST weight and the edges used, formatted as node pairs.


Approximate TSP

Goal: Approximate a solution to the Travelling Salesperson Problem for large graphs.

Output: The approximate total tour length and the sequence of visited nodes.


Optimal TSP

Goal: Compute the exact optimal solution for the TSP using a branch-and-bound algorithm.

Output: The optimal tour length and the exact sequence of visited nodes.


Technologies: C++

Note:

Due to university policy, the code is not publicly available but can be viewed upon request.