0
我有一系列從0-9範圍內的數字。每個數字表示具有x和y座標的位置。所以,位置0可以表示(5,5)或類似的東西,總是(x,y)。現在我需要做的是遞歸地使用5個位置對每個可能的路線進行打擊以獲得用戶給出的位置。例如:遞歸查找路徑
Input = (1, 2) //This is the co-ordinate the user gives.
現在給出這個輸入,它應該採取每一個可能的路徑,並找到最短的一個。有些路徑可能是:
start 0 1 2 3 4 input
start 0 1 2 3 5 input
start 0 1 2 3 6 input
start 0 1 2 3 7 input
start 0 1 2 4 3 input
start 1 0 2 3 5 input
and so on....
它可能是0-9中5個數字的任意組合。它必須在輸入目的地結束並從起始目的地開始。數字不能重複使用。因此,我需要遞歸地添加給定課程的所有距離(例如,開始0 1 2 3 4輸入),並在通過這5個點時找到最短可能的課程。
問題:基數和遞歸情況會是什麼?
看看Dijkstra's_algorithm https://en.wikipedia.org/wiki/Dijkstra's_algorithm –