当前位置:   article > 正文

A*算法 C++简单实现走迷宫_迷宫问题a*算法

迷宫问题a*算法

        A*算法是一种启发式搜索算法,通常用于在图或者网络中找到从起始节点到目标节点的最短路径。A*算法在维持最小堆(或优先队列)的基础上,通过估算从起始节点到目标节点的代价(启发函数)来指导搜索过程。该算法同时考虑了实际路径成本(已经走过的路径长度)和启发函数的估计值,以选择下一步最有希望的路径。

基本原理和步骤

  1. 节点表示: 将搜索的图或网络表示为一系列节点,每个节点代表一个位置。

  2. 代价估计: 对每个节点计算两个值:已走过路径的实际成本(g值)和从当前节点到目标节点的估计成本(h值)。

  3. 总成本计算: 计算总成本f值,即已走过路径的实际成本加上估计成本。

  4. 节点扩展: 从开放列表(未完全探索的节点)中选择f值最小的节点进行扩展,将其相邻节点加入开放列表。

  5. 目标检查: 如果目标节点被加入开放列表,算法结束;否则,重复步骤 3 到步骤 5。

核心思想

        A算法的核心思想是维护一个开放列表,其中包含待探索的节点。每次选择开放列表中f值(g值 + h值)最小的节点进行扩展。通过使用启发函数估计目标节点的距离,A算法能够更聪明地选择下一步的移动方向,以减少搜索空间,提高搜索效率。

示例代码

走迷宫

  1. #include <iostream>
  2. #include <vector>
  3. #include <queue>
  4. #include <cmath>
  5. using namespace std;
  6. // 定义节点结构体
  7. struct Node {
  8. int x, y; // 节点在网格中的坐标
  9. int g; // 从起点到该节点的实际代价
  10. int h; // 从该节点到目标的估计代价
  11. int f; // f = g + h,综合考虑实际代价和启发式代价
  12. bool operator<(const Node& other) const {
  13. return f > other.f;
  14. }
  15. };
  16. // 定义A*算法函数
  17. vector<pair<int, int>> AStar(const vector<vector<int>>& grid, pair<int, int> start, pair<int, int> goal) {
  18. // 定义移动方向,上下左右和对角线
  19. const int dx[] = { -1, 0, 1, 0, -1, -1, 1, 1 };
  20. const int dy[] = { 0, 1, 0, -1, -1, 1, -1, 1 };
  21. int rows = grid.size();
  22. int cols = grid[0].size();
  23. // 创建二维数组来存储每个节点的父节点坐标
  24. vector<vector<pair<int, int>>> parent(rows, vector<pair<int, int>>(cols, { -1, -1 }));
  25. // 创建二维数组来存储每个节点的g值
  26. vector<vector<int>> g(rows, vector<int>(cols, INT_MAX));
  27. // 创建优先队列来存储待探索的节点
  28. priority_queue<Node> pq;
  29. // 初始化起点
  30. Node startNode = { start.first, start.second, 0, 0, 0 };
  31. pq.push(startNode);
  32. g[start.first][start.second] = 0;
  33. // A*算法主循环
  34. while (!pq.empty()) {
  35. // 取出当前f值最小的节点
  36. Node current = pq.top();
  37. pq.pop();
  38. // 到达目标节点,构建路径并返回
  39. if (current.x == goal.first && current.y == goal.second) {
  40. vector<pair<int, int>> path;
  41. while (current.x != -1 && current.y != -1) {
  42. path.push_back({ current.x, current.y });
  43. current = { parent[current.x][current.y].first, parent[current.x][current.y].second };
  44. }
  45. reverse(path.begin(), path.end());
  46. return path;
  47. }
  48. // 探索当前节点的邻居
  49. for (int i = 0; i < 8; ++i) {
  50. int nx = current.x + dx[i];
  51. int ny = current.y + dy[i];
  52. // 检查邻居是否在网格内且不是障碍物
  53. if (nx >= 0 && nx < rows && ny >= 0 && ny < cols && grid[nx][ny] != 1) {
  54. int new_g = current.g + 1;
  55. // 如果新的g值更小,更新节点信息
  56. if (new_g < g[nx][ny]) {
  57. g[nx][ny] = new_g;
  58. int h = abs(nx - goal.first) + abs(ny - goal.second); // 曼哈顿距离作为启发式函数
  59. int f = new_g + h;
  60. // 将邻居节点加入优先队列
  61. pq.push({ nx, ny, new_g, h, f });
  62. parent[nx][ny] = { current.x, current.y };
  63. }
  64. }
  65. }
  66. }
  67. // 如果队列为空,说明没有找到路径
  68. return {};
  69. }
  70. // 打印路径的函数
  71. void printPath(const vector<pair<int, int>>& path) {
  72. for (const auto& point : path) {
  73. cout << "(" << point.first << ", " << point.second << ") ";
  74. }
  75. cout<<endl;
  76. }
  77. void printPathAndMap(const vector<vector<int>>& grid, const vector<pair<int, int>>& path) {
  78. // 复制一份原始地图,用于标记路径
  79. vector<vector<int>> mapWithPaths = grid;
  80. // 在地图上标记路径
  81. for (const auto& point : path) {
  82. mapWithPaths[point.first][point.second] = -1;
  83. }
  84. // 打印地图
  85. for (const auto& row : mapWithPaths) {
  86. for (int cell : row) {
  87. if (cell == 0) {
  88. cout << "0 "; // 0表示可走路径
  89. }
  90. else if (cell == 1) {
  91. cout << "1 "; // 1表示障碍物
  92. }
  93. else if (cell == -1) {
  94. cout << "* "; // -1表示路径
  95. }
  96. }
  97. cout << endl;
  98. }
  99. }
  100. int main() {
  101. //地图网格,0表示可走路径,1表示障碍物
  102. vector<vector<int>> grid = {
  103. {0, 0, 0, 0, 0,0},
  104. {0, 1, 1, 0, 0,1},
  105. {0, 0, 0, 1, 0,1},
  106. {0, 1, 0, 1, 0,0},
  107. {0, 0, 0, 0, 0,1},
  108. {0, 1, 1, 0, 1,0}
  109. };
  110. pair<int, int> start = { 0, 0 };
  111. pair<int, int> goal = { 5, 5 };
  112. vector<pair<int, int>> path = AStar(grid, start, goal);
  113. // 输出路径
  114. printPath(path);
  115. printPathAndMap(grid, path);
  116. return 0;
  117. }

运行结果:

在A*算法主循环中,要不断从优先队列中取出f值最小的节点进行探索。如果当前节点是目标节点,就通过父节点链追溯回起点,构建路径并返回。否则,将当前节点的邻居加入优先队列进行进一步探索。

关键的步骤包括:

  1. 初始化起点并将其加入优先队列。
  2. 在主循环中,反复从优先队列中取出节点,探索其邻居,并更新节点信息。
  3. 如果找到目标节点,通过父节点链构建路径并返回。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/526206
推荐阅读
相关标签
  

闽ICP备14008679号