Interactive Learning Module
Algorithms for Last-Mile Delivery and Logistics Network Efficiency
Understand the structure and computational complexity of the Traveling Salesman Problem (TSP) as NP-hard optimization
Compare heuristic algorithms including Nearest Neighbor, 2-opt local search, and Christofides' algorithm for approximation
Evaluate trade-offs between solution quality and computational time in practical routing applications
Apply routing optimization concepts to last-mile delivery, field service, and supply chain logistics challenges
O(n!) complexity → heuristics essential for n > 15
| Algorithm | Distance | Gap |
|---|---|---|
| ✨ Optimal | - | 0% |
| Nearest Neighbor | - | - |
| 2-Opt | - | - |
| Insertion | - | - |
| Christofides | - | - |
Applegate, D. L., Bixby, R. E., Chvátal, V., & Cook, W. J. (2006). The Traveling Salesman Problem: A Computational Study. Princeton University Press. • Toth, P., & Vigo, D. (2014). Vehicle Routing: Problems, Methods, and Applications (2nd ed.). SIAM. • Lin, S., & Kernighan, B. W. (1973). An effective heuristic algorithm for the traveling-salesman problem. Operations Research, 21(2), 498-516. • Christofides, N. (1976). Worst-case analysis of a new heuristic for the travelling salesman problem. Technical Report, Carnegie Mellon University.