please anybody having traveling salesman problem solution in Standard ML, plz tell me.
I've tried a lot but am not successfull...
Thx in advance.
|
please anybody having traveling salesman problem solution in Standard ML, plz tell me. I've tried a lot but am not successfull... Thx in advance. | ||||
|
feedback
|
|
The brute force solution to traveling salesman is very straight forward. You populate a list of possible paths and pick the smallest one. As for doing this in SML there are a myriad of methods. It will firstly depend on what data structure you are using to do this, and secondly on whether or not you wish to use 'lazy' functions / streams. My suggestion to you is to code a simple path finder first, then extend it to generating all paths as a list or other data structure. Finally sort that list for the smallest trip length. Use the TSP on wiki as a helpful resource when considering how to go about solving this problem. I'm sorry, but I'm not in the business of doing others homework for them. | |||
|
feedback
|
|
Depends. How long are you willing to wait for the program to give a solution? Are you looking for the general algorithm or a specific solution with a specific number of cities? | ||||
feedback
|
|
I don't know how to use 2D arrays in SML. This is an F# solution:
Translating it into SML should be straightforward if you know SML. | |||
feedback
|