为了账号安全,请及时绑定邮箱和手机立即绑定

单源最短路径-贪心算法

标签:
Java


        单源最短路径,关于这个问题的贪心算有点不好理解,分析后续补充,代码也需要后续优化,便于理解

package test;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

/**

 * Created by saishangmingzhu on 2018/12/3.

 * 单源最短路径

 */

public class SingleSourceShortestPath {

    public static void main(String[] arg) {

        new SingleSourceShortestPath().greedy();

    }

    /**

     * 贪心算法

     */

    public void greedy(){

        //【1】创建有向图

        List<Point> pointList=new ArrayList<>();

        pointList.add(new Point("A",0));

        pointList.add(new Point("B",1));

        pointList.add(new Point("C",2));

        pointList.add(new Point("D",3));

        pointList.add(new Point("E",4));

        Map<String,Integer> pathMap=new HashMap<>();

        pathMap.put("AB",10);

        pathMap.put("AD",30);

        pathMap.put("AE",100);

        pathMap.put("BC",50);

        pathMap.put("CE",10);

        pathMap.put("DC",20);

        pathMap.put("DE",60);

        //【2】从源顶点计算距离

        // 源顶点为A

        int[] dist=new int[pointList.size()];

        for (int i=1;i<dist.length;i++){

            dist[i]=Integer.MAX_VALUE;

        }

        List<Point> resultList=new ArrayList<>();

        Point first=pointList.get(0);

        pointList.remove(0);

        while (pointList.size()>0){

            int min=10000;

            Point minP=null;

            for (int i=0;i<pointList.size();i++) {

                Point p = pointList.get(i);

                String key = first.getName() + p.getName();

                if (pathMap.containsKey(key)) {

                    int v = pathMap.get(key);

                    if (dist[p.getIndex()] > v + dist[first.getIndex()]) {

                        dist[p.getIndex()] = v + dist[first.getIndex()];

                        if (min>v + dist[first.getIndex()]){

                            min=v + dist[first.getIndex()];

                            minP=p;

                        }

                    }

                }

                else {

                    if (min>dist[p.getIndex()]){

                        min=dist[p.getIndex()];

                        minP=p;

                    }

                }

            }

            resultList.add(minP);

            pointList.remove(minP);

            first=minP;

        }

        for (int i:dist)

            System.out.println(i);

    }

}

class Point{

    String name;

    int index;

    public Point(String name, int index) {

        this.name = name;

        this.index = index;

    }

    public String getName() {

        return name;

    }

    public void setName(String name) {

        this.name = name;

    }

    public int getIndex() {

        return index;

    }

    public void setIndex(int index) {

        this.index = index;

    }

}

©著作权归作者所有:来自51CTO博客作者塞上名猪的原创作品,如需转载,请注明出处,否则将追究法律责任


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消