I am developing a web app to show a map and a route between some points. I want to know the short route between that points.
Now I am using the dijkstra algorithm but I was asked to use TSP instead.
I want that first and last point would be the same, using dijkstra I have to set the last point to be the same but with TSP it is set automatically.
Are both the same algorithm? just with that modification or are different algorithms?
Any webpage where I can check the pseudo code of TSP?