当前位置:   article > 正文

无向图寻找两点间的最短路径_无向图两点之间的最短路径

无向图两点之间的最短路径

1.简介

      无向图是图结构的一种。本次程序利用邻接表实现无向图,并且通过广度优先遍历找到两点之间的最短路径。

2.广度优先遍历

      广度优先遍历(BFS)和深度优先遍历(DFS)是图结构中最常用的遍历方式。其中广度优先遍历配合上队列能够找到两点之间的最短路径,同时也能解决一些其他的问题(比如寻找迷宫的最短逃离路线)。广度优先遍历寻找两点之间最短路径的操作分为以下几步: 

      1.首先定义起始点和终点src和dst。接着定义一个数组distance[ ],用于存放各点到src的距离。初始化时各点到src的距离是INF(表示正无穷。这里可自行定义,作用是表示还未得到该结点到src的距离),而distance[src] = 0。然后将src放入队列。

      2.取出队列的第一个结点(一开始队列只有src,这里就是取出src)放在变量top中;

      3.获得该结点的所有邻接结点,并且判断distance[ ]数组中各个邻接结点是否为INF。如果是说明还没有访问过该结点则将distance[ ]相应的位置设定为distance[top] + 1。如果不为INF,则表示之前已经访问过了,因此跳过。

      4.重复2-3步直到top变量等于dst为止。或者一直到队列为空,这种情况下说明两点间不存在路径。

    总结起来就是将结点从src开始按顺序放进队列中,而已经放进过队列的结点会被标识,因此不会重复放进队列,直到找到dst为止。这种方法得到的路径一定是最短路径。

3.输出最短路径

      上面使用广度优先遍历找到的是两点之间最短路径的长度,并且存储在了distance[dst]中,而如果要输出这条最短路径有不同的方法。本人这里使用的方法是先将dst压入栈中,然后通过遍历dst的邻接结点中有哪一个结点在distance数组中的值是distance[dst] - 1,找到后压入栈中。接着继续寻找再前一个结点,同样压入栈中。循环该操作最后找到src,然后将栈中的元素依次pop出来。因为栈先进后出的性质,便能够得到该条路径。

4.代码实现

      具体的代码如下

  1. #ifndef _GRAPH_H
  2. #define _GRAPH_H
  3. #include <stack>
  4. #include <iostream>
  5. #include <queue>
  6. #define ERROR -1
  7. #define V_E_INFO 1
  8. #define FIND 1
  9. #define PATH 2
  10. #define MAX 100
  11. using namespace std;
  12. class ArcNode
  13. {
  14. private:
  15. int value;
  16. ArcNode *next;
  17. public:
  18. ArcNode(int , ArcNode * = nullptr);
  19. void set_next(ArcNode *);
  20. ArcNode *get_next() const;
  21. int get_value() const;
  22. void set_value(int);
  23. };
  24. class List
  25. {
  26. private:
  27. int value;
  28. ArcNode *firstnode;
  29. public:
  30. List(int = 0,ArcNode * = nullptr);
  31. ~List();
  32. ArcNode *Pop();
  33. void Push(int);
  34. int get_value() const;
  35. int is_exist(int) const;
  36. ArcNode *get_firstnode() const;
  37. void set_value(int);
  38. void dfs_find_path() const;
  39. void set_firstnode(ArcNode *);
  40. void print() const;
  41. };
  42. class Graph
  43. {
  44. private:
  45. List list[MAX];
  46. int vertices_num;
  47. int edge_num;
  48. public:
  49. Graph(int,int,int []);
  50. ~Graph();
  51. int get_vertices_num() const;
  52. int get_edge_num() const;
  53. List *get_list(int);
  54. void print() const;
  55. void dfs_print_path(int,int) const;
  56. void dfs_find_path(int,int,int [],stack<int> & ,int &) const;
  57. void dfs(int src,int visited[],int &count) const;
  58. void dfs_print(int) const;
  59. void dfs_non_recursive() const;
  60. int find_shortest_path(int,int) const;
  61. void dfs(int,int []) const;
  62. };
  63. #endif

 BFS找寻最短路径代码:

  1. int Graph::find_shortest_path(int src,int dst) const
  2. {
  3. queue<int> myQ;
  4. int value[vertices_num];/用于存放各点到src的距离
  5. int head = 0;
  6. int output[10];
  7. for(int i = 0;i < vertices_num;i++)
  8. {
  9. value[i] = -1;//-1表示还没有访问过该结点
  10. }
  11. value[src] = 0;
  12. myQ.push(src);
  13. while(myQ.size())
  14. {
  15. head = myQ.front();
  16. myQ.pop();
  17. if(head == dst)
  18. {
  19. int find = dst;
  20. stack<int> myS;
  21. myS.push(dst);
  22. while(find != src)
  23. {
  24. for(int j = 0; j < vertices_num; j++)
  25. {
  26. if((list[j].is_exist(find) == 1) && (value[find] == value[j] + 1))
  27. {
  28. myS.push(j);
  29. find = j;
  30. break;
  31. }
  32. }
  33. }
  34. int count = myS.size();
  35. for(int j = 0;j < count;j++)
  36. {
  37. if(j == count - 1)
  38. cout << myS.top() << endl;
  39. else
  40. {
  41. cout << myS.top() << "-";
  42. myS.pop();
  43. }
  44. }
  45. return FIND;
  46. }
  47. ArcNode *a = list[head].get_firstnode();
  48. while( a != nullptr)
  49. {
  50. if(value[a -> get_value()] == -1)
  51. {
  52. value[a -> get_value()] = value[head] + 1;
  53. myQ.push(a -> get_value());
  54. }
  55. a = a -> get_next();
  56. }
  57. }
  58. cout << "Error: no path between " << src << " and " << dst << endl;
  59. return ERROR;
  60. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/152085
推荐阅读
相关标签
  

闽ICP备14008679号