'Shortest path without given nodes

so I was given x amount of points generated randomly and need to find the shortest path for all of those points. So what would be the best method I could use given that the amounts of points could potentially reach a very large amount and the endpoint would be the final points of the given x.

Thank you



Solution 1:[1]

There are so many methods for the shortest path. Dijkstra is the father of the shortest path, you can use it for trial and error dijkstra.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1