Traveling salesman problem
Finding minimal cost Hamiltonian cycle. Optimal solution is only found by Brute-force Search(exponential).
The weight between two cities can be
- Ticket cost (asymmetric)
- Travel time (asymmetric)
- Euclidean distance (symmetric)
TSP Algorithm Notion