图的最短路问题之bellman-ford算法

bellman-ford算法:
  遍历所有的边,边有起点i和终点j,如果源点到顶点的最短距离d[i]已经算出来,就比较d[j]和d[i]+distance,如果前者比后者大,就可以更新d[j],如此往复,直到没有数据可更新,这样源点到所有顶点的最短距离就算出来了。
代码实现:
import java.util.Arrays;

public class Main {
    static int[][] graph = {
            {0, 2, 5, 0, 0, 0, 0},
            {2, 0, 4, 6, 10, 0, 0},
            {5, 4, 0, 2, 0, 0, 0},
            {0, 6, 2, 0, 0, 1, 0},
            {0, 10, 0, 0, 0, 3, 5},
            {0, 0, 0, 1, 3, 0, 9},
            {0, 0, 0, 0, 5, 9, 0}
    };

    public static void main(String[] args) {
        int[] shortestPath = shortestPath(0);
        System.out.println(Arrays.toString(shortestPath));
    }

    /**
     * 求起点到各顶点的最短距离
     * @param s 起点
     * @return
     */
    private static int[] shortestPath(int s) {
        int n = graph.length;
        //记录s到各顶点的最短距离
        int[] d = new int[n];
        for (int i = 0; i < n; ++i) {
            d[i] = Integer.MAX_VALUE;
        }
        //到自己的距离为0
        d[s] = 0;
        //只要上一轮while循环有更新过就反复扫描,直到再也没有更新就退出while循环
        while (true) {
            //退出while循环时使用
            boolean update = false;
            //扫描所有的边
            for (int i = 0; i < n; ++i) {
                //起点到i的最短距离还没算出来
                if (d[i] == Integer.MAX_VALUE) {
                    continue;
                }
                for (int j = 0; j < n; ++j) {
                    //i、j之间的距离
                    int distance = graph[i][j];
                    //i、j两点之间有边,起点是i
                    if (distance > 0) {
                        //起点到i再到j两端距离加起来比起点直接到j的距离更短,则更新
                        if (d[j] > d[i] + distance) {
                            update = true;
                            d[j] = d[i] + distance;
                        }
                    }
                }
            }
            //再也没有可更新的元素
            if (!update) {
                break;
            }
        }
        return d;
    }
}
运行结果截图:

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值