diff --git a/graph/travelling_salesman_problem.cpp b/graph/travelling_salesman_problem.cpp index 24bead509..44a61d387 100644 --- a/graph/travelling_salesman_problem.cpp +++ b/graph/travelling_salesman_problem.cpp @@ -4,7 +4,12 @@ // the origin city? // This is the naive approach to solve this problem. -#include +// References: +// https://en.wikipedia.org/wiki/Travelling_salesman_problem + +#include +#include +#include using namespace std; int TravellingSalesmanProblem(vector> cities, int src, int V) {