Java的最短路径和距离算法?

时间:2011-06-28 02:15:18

标签: java shortest-path

在下面的代码中,我试图计算两个城市之间的距离。用户将输入城市名称和城市,然后用户将输入这些城市之间的距离,最后输入在这些城市之间旅行的价格。我还没有得到评估,因为我不确定我将如何做到这一点。我的问题是我正在寻找关于如何做到这一点的指针和建议。

import java.io.*;
import java.util.*;

public class CityCalcultor {

    static LinkedList<String> cities = new LinkedList<String>();
    static LinkedList<Integer> distance = new LinkedList<Integer>();
    static LinkedList<Integer> price = new LinkedList<Integer>();

    public static void main(String[] args) throws IOException {
        Scanner input = new Scanner(System.in);
        String text;
        int option = 0;
        while (true) {
            System.out.println("\nWhat would you like to do:\n"
                + "1. Add a city to the system\n"
                + "2. Add a path to the system\n"
                + "3. Evalute paths\n"
                + "4. Exit\n" + "Your option: ");
            text = input.nextLine();
            option = Integer.parseInt(text);

            switch (option) {
                case 1:
                    EnterCity();
                    break;
                case 2:
                    EnterPath();
                    break;
                case 3:
                    EvalutePaths();
                    break;
                case 4:
                    return;
                default:
                    System.out.println("ERROR INVALID INPUT");
            }
        }
    }

    public static void EnterCity() {
        String c = "";
        LinkedList<String> cities = new LinkedList<String>(Arrays.asList(c));
        Scanner City = new Scanner(System.in);
        System.out.println("Please enter the city name ");
        c = City.nextLine();
        cities.add(c);
        System.out.println("City " + c + " has been added ");
    }

    public static void EnterPath() {
        Scanner Path = new Scanner(System.in);
        int d = 0;
        int p = 0;
        System.out.println("Enter the starting city ");
        System.out.println();
        System.out.println(Path.nextLine());
        System.out.println("Enter the ending city ");
        System.out.println(Path.nextLine());
        System.out.println("Enter the distance between the two cities ");
        d = Path.nextInt();
        for (d = 0; d > 0; d++) {
            distance.add(d);
        }
        System.out.println("Enter the price between the two cities ");
        p = Path.nextInt();
        for (p = 0; p > 0; p++) {
            price.add(p);
        }
        System.out.println("The route was sucessfully added ");
    }

    private static void EvalutePaths() {
    }
}

2 个答案:

答案 0 :(得分:3)

计算最短路径的几乎标准方法是A*

答案 1 :(得分:3)

我可以通过两种方式解释您的问题:您要么评估城市对之间的所有可能路径(技术上无限,除非您限制重新访问城市),或者您想要找到最短距离/最便宜的方式从一个城市到另一个城市。

我不想弄清楚第一个,我很确定你的意思是第二个,所以我就是这样。

问题的解决方案是使用图表对城市及其之间的路线进行建模,其中每个顶点都是城市,每条边是两个城市之间的直接路径。边缘按城市之间的距离或旅行成本加权。

然后,您可以应用Dijkstra's Algorithm(或其中一个变体)来查找任何源顶点(出发城市)与总权重最小的所有其他顶点(目标城市)之间的路径(即最小距离或成本最低)。如果您依次使用每个顶点作为源应用此算法,您将构建任意两个城市之间最便宜路线的完整模型。