dijkstra算法--寻找最短路径

转自https://blog.csdn.net/heroacool/article/details/51014824

基本思想

  1. 通过Dijkstra计算图G中的最短路径时,需要指定起点s(即从顶点s开始计算)。
  2. 此外,引进两个集合S和U。S的作用是记录已求出最短路径的顶点(以及相应的最短路径长度),而U则是记录还未求出最短路径的顶点(以及该顶点到起点s的距离)。
  3. 初始时,S中只有起点s;U中是除s之外的顶点,并且U中顶点的路径是”起点s到该顶点的路径”。然后,从U中找出路径最短的顶点,并将其加入到S中;接着,更新U中的顶点和顶点对应的路径。 然后,再从U中找出路径最短的顶点,并将其加入到S中;接着,更新U中的顶点和顶点对应的路径。 … 重复该操作,直到遍历完所有顶点。

操作步骤

  1. 初始时,S只包含起点s;U包含除s外的其他顶点,且U中顶点的距离为”起点s到该顶点的距离”[例如,U中顶点v的距离为(s,v)的长度,然后s和v不相邻,则v的距离为∞]。
  2. 从U中选出”距离最短的顶点k”,并将顶点k加入到S中;同时,从U中移除顶点k。
  3. 更新U中各个顶点到起点s的距离。之所以更新U中顶点的距离,是由于上一步中确定了k是求出最短路径的顶点,从而可以利用k来更新其它顶点的距离;例如,(s,v)的距离可能大于(s,k)+(k,v)的距离。
  4. 重复步骤(2)和(3),直到遍历完所有顶点。

多谢博主的叙述,我其实一直对于dijkstra算法有疑惑  就是关于集合s,u的作用  搞清楚了就明白了 下面是我写的一个例子

#include<iostream>
using namespace std;
#define INF 100
//0:北区宿舍
//1:第二食堂
//2:2区
//3:3区
//4:4区
//5:5区
//6:6区
//7:7区
//8:8区
//9:图书馆

//图的邻接矩阵
int matrix[10][10] = {
    0,1,3,23,INF,15,6,7,28,12,
    0,0,12,2,13,3,14,6,INF,10,
    0,0,0,11,1,21,INF,24,5,38,
    0,0,0,0,11,13,4,25,6,38,
    0,0,0,0,0,22,12,14,INF,18,
    0,0,0,0,0,0,INF,12,4,48,
    0,0,0,0,0,0,0,22,24,18,
    0,0,0,0,0,0,0,0,21,26,
    0,0,0,0,0,0,0,0,0,26,
    0,0,0,0,0,0,0,0,0,0
};
//各个景点名字
char name[10][100] = {
    "北区宿舍",
    "第二食堂",
    "二区教学楼",
    "三区教学楼",
    "四区教学楼",
    "五区教学楼",
    "六区教学楼",
    "七区教学楼",
    "八区教学楼",
    "图书馆"
};
//景点的详细内容
char content[10][500] = {
    "提供住宿",
    "提供饮食",
    "教学区2",
    "教学区3",
    "教学区4",
    "教学区5",
    "教学区6",
    "教学区7",
    "教学区8",
    "提供阅读,书籍借阅与归还"
};

//S的作用是记录已求出最短路径的顶点(以及相应的最短路径长度),
//而U则是记录还未求出最短路径的顶点(以及该顶点到起点s的距离)。
int s[10], u[10];

bool flag[10] = { false };//用以标志已经存储在s[]中的点

//找到与i节点相连路径的最短节点   返回其下标
int min(int i) {
    int min = INF;
    int tag = 0;
    for (int j = 0; j < 10; j++)
    {
        if (j == i)  //不能返回自身  即权重为0的点
            continue;
        else if(!flag[j])  //如果没被标志
        {
            if (min > matrix[i][j])
            {
                min = matrix[i][j];
                tag = j;
            }

        }
    }
    return tag;
}
//介绍图景
void serveintroduce()
{
    int i;
    cout <<endl<< "please input your choice to get more information:";
    cin >> i;
    while (i > 9 || i < 0)
    {
        cout << "please input the true number!!!";
        cout << "please input your choice to get more information:";
        cin >> i;
    }

    cout << "the number you have input is  :" << i << endl;
    cout << "the building of the number is :" << name[i] << endl;
    cout << "this building‘s function is   :" << content[i] << endl;
}
//找到最短路径  输入出发点与目的地  输出最短路径长度
void findtrade()
{
    int st, en;   //开始节点st   结束节点en
    int pre[10];  //用以记录起始点到各点最短路径的前驱
    memset(s, 0, sizeof(s));
    memset(u, 0, sizeof(u));
    cout << endl << "please input the start point and destination:" << endl;
    cin >> st;
    cin >> en;
    while (st > 9 || st < 0 || en>9 || en < 0)
    {
        cout << "please input the true number!!!";
        cout << endl << "please input the start point and destination:" << endl;
        cin >> st;
        cin >> en;
    }
    if (st == en)
    {
        cout << "原地踏步";
        return;
    }

    for (int i = 0; i < 10; i++)
    {
        s[i] = u[i] = matrix[st][i];
        pre[i] = st;         //前驱
        flag[i] = false;     //刷新标志位  每次执行findtrade()函数都需要刷新标志
    }

    //Dijkstra算法
    int m = st;
    flag[st] = true;
    for (int i = 0; i < 10; i++)
    {
        if (m == en)
            break;
        if (s[min(m)] > s[m] + matrix[m][min(m)])
        {
            pre[min(m)] = m;
            s[min(m)] = s[m] + matrix[m][min(m)];
        }
        m = min(m);
        flag[m] = true;
    }
    cout << name[st] << "到" << name[en] << "的最短距离为" << s[en] << endl;   //输出最短距离

    m = en;
    cout << name[en];
    while (pre[m] != st)   //打印最短路径
    {
        cout << "<---" << name[pre[m]];
        m = pre[m];
    }
    cout << "<---" << name[st] << endl;
}

int main()
{
    int i = 0;
    cout << "plaese read the review to choose what you want to know" << endl;
    for (i = 0; i < 10; i++)
    {
        cout << i << " :";
        cout << name[i] << " " << endl;
    }

    for (int i = 0; i < 10; i++)
    {
        for (int j = 9; j > i; j--)
            matrix[j][i] = matrix[i][j];
    }

    //for(int i = 0; i < 10; i++)
    //{
    //    for (int j = 0; j < 10; j++)
    //        cout << matrix[i][j]<<" ";
    //    cout << endl;
    //}

    while (i)
    {
        cout << endl<<"please input the num to choose the following choice:" << endl;
        cout << "1, service of introduce; 2, find the trade" << endl;
        cin >> i;
        while (i != 1 && i != 2)
        {
            cout << endl<<"please input the true number!!!" << endl;
            cout << "please input the num to choose the following choice:" << endl;
            cout << "1, service of introduce; 2, find the trade" << endl;
            cin >> i;
        }
        if (i == 1)
            serveintroduce();
        else
            findtrade();
    }

    return 0;
}

原文地址:https://www.cnblogs.com/zhengbao/p/9188741.html

时间: 2024-10-10 20:24:23

dijkstra算法--寻找最短路径的相关文章

Dijkstra 算法寻找最短路径 较简易

反正觉得比书上的代码简单多了 主要的一些核心代码还是参考上一篇博客的,觉得那篇的Dij写的不错,值得细细品味 注释的话看上篇博客,vim不知道怎么注释 #include<iostream> using namespace std ; const int maxint = 999 ; const int maxnum = 100 ; int dist[maxnum] ; int pre[maxnum] ; int c[maxnum][maxnum] ; void Dij(int number ,

Dijkstra算法求最短路径(java)(转)

原文链接:Dijkstra算法求最短路径(java) 任务描述:在一个无向图中,获取起始节点到所有其他节点的最短路径描述 Dijkstra(迪杰斯特拉)算法是典型的最短路径路由算法,用于计算一个节点到其他所有节点的最短路径.主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止. Dijkstra一般的表述通常有两种方式,一种用永久和临时标号方式,一种是用OPEN, CLOSE表方式用OPEN,CLOSE表的方式,其采用的是贪心法的算法策略,大概过程如下:1.声明两个集合,open和close

Dijkstra算法求最短路径

摘自最短路径算法,如有任何侵权问题,请及时通知本人,本人将马上予以删除. 链接算法过程 /* 有向图的构建及最短路径求解(Dijkstra) */ #include <stdio.h> #include <stdlib.h> #define MAX_VERTEX_NUM 30 #define MAX_INT 1000 typedef int VrType; typedef char VtType; bool visted[MAX_VERTEX_NUM]; //搜索时的标记矩阵 ty

dijkstra算法计算最短路径和并输出最短路径

1 void dijisitela(int d, int m1) 2 { 3 int dis[1000], book[1000], path[1000], u, v, min; 4 l = 1; 5 for (i = 0; i < n1; i++) 6 { 7 dis[i] = w[d][i]; 8 book[i] = 0; 9 path[i] = -1; 10 midpath[0][i] = -1; 11 } 12 midsum[0] = 0; 13 book[0] = d; 14 15 //

python Dijkstra算法实现最短路径问题的方法

这篇文章主要介绍了python Dijkstra算法实现最短路径问题的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 从某源点到其余各顶点的最短路径 Dijkstra算法可用于求解图中某源点到其余各顶点的最短路径.假设G={V,{E}}是含有n个顶点的有向图,以该图中顶点v为源点,使用Dijkstra算法求顶点v到图中其余各顶点的最短路径的基本思想如下: 使用集合S记录已求得最短路径的终点K线图的跳空,初始时S={v}.

JAVA实践Dijkstra算法求最短路径距离

前言 Dijkstra算法用于求指定顶点到其他顶点的最短距离,时间复杂度O(N^2),据说可以使用堆优化到O(log N),然而还不会. 其特点是(对我来说)非常容易求得路径,和对应的距离. 缺陷也是存在的,此算法不能处理负权边.即距离为负时,就挂了. 此文内容同样参考<啊哈,算法> 另外个人感觉代码可能有错,还望有心人指点. 功能实现 输入一个顶点 输出路径 输出与路径对应的距离 如果存在不可到达的顶点,则输出该顶点不可到达 中文版参考 对应的二维数组 {0, 1, 12, INF, INF

python 实现dijkstra算法求解最短路径

? 重点:dijkstra算法按层计算其余点到源点的最短距离,层层扩展. 1. dijkstra算法 求解目标:找到图中源点到其余点的最短距离,是单源点最短距离算法. 整体思路:每一步都寻找到与源点最近的点,层层扩展,是贪心算法. 具体实现: 输入:给定一个图的邻接表M,源点u. 辅助变量:存储与源点最短距离的字典.存储已访问节点的集合. 算法过程: 初始化:将源点加入已访问集合 对已访问集合中每个点的所有邻接点,计算与源点的最短距离存入字典和已访问集合. 重复2,直至所有顶点被访问 2. 求解

_DataStructure_C_Impl:Dijkstra算法求最短路径

// _DataStructure_C_Impl:Dijkstra #include<stdio.h> #include<stdlib.h> #include<string.h> typedef char VertexType[4]; typedef char InfoPtr; typedef int VRType; #define INFINITY 100000 //定义一个无限大的值 #define MaxSize 50 //最大顶点个数 typedef int P

Dijkstra算法求最短路径 C++实现

Dijstra算法代码借鉴: #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #define Inf 0x3f3f3f3f using namespace std; int map[1005][1005];//存储输入数组值 int vis[1005],dis[1005];//vis标记数组,dis最短路径 int n,m;//n个点,m条边 void Ini