美文网首页
最短路径-有向无环图

最短路径-有向无环图

作者: 飞哈飞 | 来源:发表于2020-11-06 20:22 被阅读0次

有向无环图最短路径

根据算法基础这本书的思路,先进行拓扑排序,在逐一进行松弛操作。

package com.jeff.demon;

import org.junit.Test;

import java.util.*;
import java.util.stream.Collectors;

public class ShortestLineAppTest {
    //有向无环图求最短路径
    @Test
    public void test0(){
        RouteNode a=new RouteNode("a");
        RouteNode b=new RouteNode("b");
        RouteNode c=new RouteNode("c");
        RouteNode d=new RouteNode("d");
        RouteNode e=new RouteNode("e");
        RouteNode a0=new RouteNode("a0");
        a.routeNodeWeightList.add(new RouteNodeWeight(b,1));
        b.routeNodeWeightList.add(new RouteNodeWeight(c,2));
        b.routeNodeWeightList.add(new RouteNodeWeight(d,3));
        c.routeNodeWeightList.add(new RouteNodeWeight(e,4));
        d.routeNodeWeightList.add(new RouteNodeWeight(e,5));
        a0.routeNodeWeightList.add(new RouteNodeWeight(d,6));
        startRouteNode(Arrays.asList(
                a,b,c,d,e,a0
        ));
    }

    void startRouteNode(List<RouteNode> routeNodeList){
        InOutDegree inOutDegree=new InOutDegree(routeNodeList);
        inOutDegree.calcIndegree();
        Map<RouteNode,Integer> shortestPath=routeNodeList.stream().collect(Collectors.toMap(e->e,e->-1));
        routeNodeList.stream().collect(Collectors.toMap(e->e,e->0));
        for (RouteNode routeNode : inOutDegree.topologicSort()) {
               relax(routeNode,shortestPath);
        }
        System.out.println(shortestPath);
    }

    //松弛操作
    void relax(RouteNode routeNode,Map<RouteNode,Integer> shortestPath){
        if(shortestPath.get(routeNode)==-1){
            shortestPath.put(routeNode,0);
        }
        int preShorest=shortestPath.get(routeNode);
        routeNode.routeNodeWeightList.forEach(e->{
            if(shortestPath.get(e.routeNode)==-1){
                shortestPath.put(e.routeNode,preShorest+e.weight);
            }else{
                int next=shortestPath.get(e.routeNode);
                if(preShorest+e.weight<next){
                    shortestPath.put(e.routeNode,preShorest+e.weight);
                }
            }
        });
    }

    static class InOutDegree{
        Map<RouteNode,Integer> indegreeMap=new HashMap<>();//节点入度数
        Map<RouteNode,Integer> outdegreeMap=new HashMap<>();//节点出度数
        List<RouteNode> sourceList;
         InOutDegree(List<RouteNode> routeNodeList)  {
            sourceList=routeNodeList;
        }

        //设置入度
        void calcIndegree(){
            indegreeMap=sourceList.stream().collect(Collectors.toMap(e->e,e->0));
            for (RouteNode routeNode : sourceList) {
                routeNode.routeNodeWeightList.forEach(e->{
                            indegreeMap.computeIfPresent(e.routeNode,(k,oldValue)->oldValue+1);
                        }
                );
            }
        }

        List<RouteNode> topologicSort(){
            List<RouteNode> topologicSortList=new LinkedList<>();
            topologicSort0(topologicSortList);
            return topologicSortList;
        }

        //提取入度为0的,并相应地对相关节点入度-1
       void topologicSort0(List<RouteNode> topologicSortList){
             while(!indegreeMap.isEmpty()){
                 List<RouteNode> routeNodeList=indegreeMap.entrySet().stream().filter(e->e.getValue()==0).map(Map.Entry::getKey)
                         .collect(Collectors.toList());
                 routeNodeList.forEach(e->{
                             indegreeMap.remove(e);
                             for (RouteNodeWeight routeNodeWeight : e.routeNodeWeightList) {
                                 RouteNode routeNode0=routeNodeWeight.routeNode;
                                 indegreeMap.compute(routeNode0,(k,o)->o-1);
                             }
                         }
                 );
                 topologicSortList.addAll(routeNodeList);
             }
        }

        //设置出度
        void addOutdegree(){
            for (RouteNode routeNode : sourceList) {
                outdegreeMap.put(routeNode,routeNode.routeNodeWeightList.size());
            }
        }
    }


    static class RouteNode{
        String nodeName;//本节点名称
        List<RouteNodeWeight> routeNodeWeightList=new LinkedList<>();//可达节点和对应权重
        public RouteNode(String name){
            this.nodeName=name;
        }
        @Override
        public String toString(){
            return this.nodeName;
        }
    }

    static class RouteNodeWeight{
        RouteNode routeNode;
        int weight;
        public RouteNodeWeight(RouteNode routeNode,int weight){
            this.routeNode=routeNode;
            this.weight=weight;
        }
    }
}

相关文章

  • 最短路径-有向无环图

    有向无环图最短路径 根据算法基础这本书的思路,先进行拓扑排序,在逐一进行松弛操作。

  • java最短路径(jgrapht)

    基于jgrapht求最短路径的算法,有向图/无向图,加权图

  • 19-最短路径(Shortest Path)

    最短路径(Shortest Path) 最短路径是指两个顶点之间权值之和最小的路径(有向图,无向图均可,不能有负权...

  • 学习日记-08- 关于 狄克斯特拉算法

    用于解决加权图(有向无环图)中前往目的地的最短路径。不能有负权边 算法步骤: 1. 找到最短时间内前往的节点 2....

  • 最长路径算法

    一、定义 最长路径算法类似于基于拓扑排序的最短路径算法。本文只针对加权有向无环图讨论。 二、基本思想 对于一幅加权...

  • 有向图和最短路径Dijkstra、Bellman-Ford、Fl

    本篇开始讨论关于有向图的算法,无向图是特殊的有向图。内容概要: 有向图的实现 最短路径经典算法实现 有向图的实现 ...

  • 任务调度-DAG和Oozie基础

    本文主要内容 有向无环图 拓扑排序 Oozie 有向无环图 什么是有向无环图 有向无环图(Directed Acy...

  • BFS及其应用

    内容概要: BFS类的实现 BFS求解连通分量 BFS求解无向图点对之间的一条最短路径 BFS判定无环图和二分图 ...

  • 有向无环图(DAG)单源最短路径

    1、基本算法我们知道DAG上一定存在拓扑排序,且若在有向图G中从顶点Vi->Vj有一条路径,则在拓扑排序中顶点Vi...

  • 静态寻路算法Dijkstra(python)

    算法介绍 迪科斯彻算法使用了广度优先搜索解决赋权有向图或者无向图的单源最短路径问题,算法最终得到一个最短路径树。该...

网友评论

      本文标题:最短路径-有向无环图

      本文链接:https://www.haomeiwen.com/subject/bpsavktx.html