目录1.效果图2.实现代码1.队列方法类2.地图方法类3.main函数3.思路1.效果图 其中正方形代表障碍物,实心菱形代表移动者(人),空心菱形代表目标位置(都是可以在代码中修改
其中正方形代表障碍物,实心菱形代表移动者(人),空心菱形代表目标位置(都是可以在代码中修改的)
本例使用队列(链表实现),以广度优先进行自动寻路。
coolQueue.h
#pragma once
#include <iOStream>
using namespace std;
//队列
//坐标结构体
struct Point
{
int x;
int y;
Point()
{
x = 0;
y = 0;
}
Point(int in_x, int in_y)
{
x = in_x;
y = in_y;
}
Point& operator=(const Point& right_p)
{
this->x = right_p.x;
this->y = right_p.y;
return *this;
}
};
//队列结构体
struct coolQueue
{
int data;
Point cool_p;
coolQueue* next_p;
coolQueue(int in_data)
{
data = in_data;
next_p = NULL;
}
coolQueue(int in_x, int in_y, int in_data = 0)
{
cool_p.x = in_x;
cool_p.y = in_y;
data = in_data;
next_p = NULL;
}
};
//队列方法类,限制访问方式
class queueClass
{
protected:
coolQueue* Head_p = NULL;
coolQueue* End_p = NULL;
public:
queueClass() {}
void push(int data); //入队
void push(int in_x, int in_y, int in_data = 0);
bool pop(int& re_data); //出队
bool pop(coolQueue& in_coolQueue);
void reverse_order(); //翻转
void clear()
{
for (int data; pop(data););
}
~queueClass()
{
clear();
}
};
coolQueue.cpp
#include "coolQueue.h"
void queueClass::push(int in_data)
{
if (Head_p == NULL) //队列为空
{
Head_p = new coolQueue(in_data);
End_p = Head_p;
}
else if(Head_p == End_p) //队列只有一个元素
{
End_p = new coolQueue(in_data);
Head_p->next_p = End_p;
}
else
{
coolQueue* temp_p = new coolQueue(in_data);
End_p->next_p = temp_p;
End_p = temp_p;
}
}
bool queueClass::pop(int& re_data)
{
if (Head_p == NULL) //队列为空
return false;
re_data = Head_p->data;
coolQueue* temp_p = Head_p;
if (Head_p == End_p) //队列只有一个元素
{
Head_p = NULL;
End_p = NULL;
}
else
Head_p = Head_p->next_p;
delete temp_p;
return true;
}
void queueClass::reverse_order()
{
if (Head_p == NULL || Head_p == End_p)
return;
coolQueue* p = Head_p, * temp_p;
do {
temp_p = p;
p = p->next_p;
temp_p->next_p = End_p->next_p;
End_p->next_p = temp_p;
} while (p != End_p);
p = Head_p;
Head_p = End_p;
End_p = p;
}
//以下重载用于辅助自动寻路实现
//in_data = 0
void queueClass::push(int in_x, int in_y, int in_data)
{
if (Head_p == NULL)
{
Head_p = new coolQueue(in_x, in_y, in_data);
End_p = Head_p;
}
else if (Head_p == End_p)
{
End_p = new coolQueue(in_x, in_y, in_data);
Head_p->next_p = End_p;
}
else
{
coolQueue* temp_p = new coolQueue(in_x, in_y, in_data);
End_p->next_p = temp_p;
End_p = temp_p;
}
}
bool queueClass::pop(coolQueue& in_coolQueue)
{
if (Head_p == NULL)
return false;
in_coolQueue.data = Head_p->data; //不直接使用复制是因为可能把Head_p的next_p也复制出去导致限制访问权限失效
in_coolQueue.cool_p = Head_p->cool_p;
coolQueue* temp_p = Head_p;
if (Head_p == End_p)
{
Head_p = NULL;
End_p = NULL;
}
else
Head_p = Head_p->next_p;
delete temp_p;
return true;
}
mapClass.h
#pragma once
#include "coolQueue.h"
#include "windows.h"
#include <cmath>
using namespace std;
#ifndef PI
#define PI 3.14159265358979323846
#endif // !PI
#ifndef Sleep_num
#define Sleep_num 500
#endif // !打印输出地图时的暂停时间
#ifndef Map_size
#define Map_size 10
#endif // !地图大小
class mapClass : protected queueClass
{
protected:
int map[Map_size][Map_size]; //地图
Point persion_p; //起点位置坐标
void new_map();
void reflash_map();
bool auto_find_way(Point& target_p);
void auto_move(int in_x, int in_y);
public:
mapClass(const Point& in_p);
bool auto_main();
void into_map(int in_data, int num = 1);
bool into_map(int in_x, int in_y, int in_data);
void show_map();
void clear_map(const Point& in_p);
};
mapClass.cpp
#include "mapClass.h"
void mapClass::new_map()
{
memset(map, 0, Map_size * Map_size);//清零
for (int num = Map_size; num--;) //设置边缘障碍物
{
map[num][0] = 1;
map[0][num] = 1;
map[num][Map_size - 1] = 1;
map[Map_size - 1][num] = 1;
}
}
void mapClass::reflash_map()
{
for (int x = Map_size - 1; --x;)
for (int y = Map_size - 1; --y;)
map[x][y] = map[x][y] % 1000;
}
bool mapClass::auto_find_way(Point& target_p)
{
coolQueue out_queue(0, 0, 0);
for (int push_num = 1; push_num;)
{
push_num = 0; //如果push_num在while循环后仍然为0,说明队列空且无路可走了
while (this->pop(out_queue))
{
for (int i = 1, temp_x, temp_y; i <= 4; ++i)//判断它的旁边4个位置
{ //此处使用sin()是为了在不同i时(temp_x, temp_y)指向以out_queue为中心的不同方向
//效果同auto_move()中的switch()的使用
temp_x = out_queue.cool_p.x + int(sin(PI / 2 * (i - 2.0)));
temp_y = out_queue.cool_p.y + int(sin(PI / 2 * (i - 3.0)));
switch (map[temp_x][temp_y])
{
case 0: //可走
{
map[temp_x][temp_y] = i * 1000; //写入方向标记
this->push(temp_x, temp_y, 0); //入队
++push_num;
}break;
case 10: //抵达目标位置
{
map[temp_x][temp_y] += i * 1000;
target_p.x = temp_x; //写入目标位置
target_p.y = temp_y;
this->clear(); //清空队列
return true;
}break;
}
}
if (out_queue.data == -1) //每一轮队列的最后一个的data标记为-1
break; //以起点位置往外一步为一轮
}
if (this->End_p != NULL)
this->End_p->data = -1;
}
this->clear();
return false;
}
void mapClass::auto_move(int in_x, int in_y)
{
int temp_x = in_x, temp_y = in_y;
switch (map[in_x][in_y] / 1000) //解析地图标记
{
case 0:return; break;
case 1:++temp_x; break;
case 2:++temp_y; break;
case 3:--temp_x; break;
case 4:--temp_y; break;
}
auto_move(temp_x, temp_y); //递归调用,让起点移动到本位置(即temp_x, temp_y)
map[temp_x][temp_y] = 0; //把现在的位置清零
map[in_x][in_y] = 100; //把下一个移动点置100,即可实现从现在的位置移动到下一个位置的效果
show_map(); //显示打印
Sleep(Sleep_num);
return;
}
mapClass::mapClass(const Point& in_p)
{
new_map();
persion_p = in_p;
}
bool mapClass::auto_main()
{
show_map(); //显示地图
Sleep(Sleep_num);
this->clear(); //清空队列
this->push(persion_p.x, persion_p.y, -1);//把起点入队
Point target_p; //目标坐标
if (auto_find_way(target_p) == false) //调用自动寻路
{
reflash_map();
return false;
}
auto_move(target_p.x, target_p.y); //移动
reflash_map(); //清理地图残留标记
persion_p = target_p; //重置起点位置,抵达终点后起点即为终点
return true;
}
void mapClass::into_map(int in_data, int num)
{
if (num <= 0)
return;
for (int i = 0, j = 0; num--;)
{
i = rand() % Map_size;
j = rand() % Map_size;
if (map[i][j] == 0)
map[i][j] = in_data;
else
++num;
}
}
bool mapClass::into_map(int in_x, int in_y, int in_data)
{
if (map[in_x][in_y] == 0)
{
map[in_x][in_y] = in_data;
return true;
}
return false;
}
void mapClass::show_map()
{
system("cls"); //清空控制台输出
for (int i = 0; i < Map_size; ++i)
{
for (int j = 0; j < Map_size; ++j)
switch (map[i][j] % 1000)
{
case 0: cout << " "; break;//空白位置
case 1: cout << "□"; break;//障碍物
case 10: cout << "◇"; break;//目标
case 100: cout << "◆"; break;//自己
default: cout << " "; break;
}
cout << endl;
}
}
void mapClass::clear_map(const Point& in_p)
{
for (int x = Map_size - 1; --x;) //把地图中的所有位置置零
for (int y = Map_size - 1; --y;)
map[x][y] = 0;
persion_p = in_p; //重新设置起点
map[in_p.x][in_p.y] = 100;
}
main.cpp
#include <iostream>
#include <time.h>
#include <cmath>
#include "mapClass.h"
using namespace std;
int main()
{
srand(int(time(0)));
Point persion_p(1, 1), target_p(1, 1);
mapClass test_map(persion_p);
test_map.into_map(1, 1, 100); //写入起点
test_map.into_map(1, 20); //写入障碍物
while (1)
{
//重置障碍物位置, 取消下面两句的注释即可启用
//test_map.clear_map(target_p); //清空地图
//test_map.into_map(1, 20); //生成障碍物
do {
target_p.x = rand() % (Map_size - 2) + 1;
target_p.y = rand() % (Map_size - 2) + 1;
} while (test_map.into_map(target_p.x, target_p.y, 10) == false);
if (test_map.auto_main() == false)
{
cout << endl << "<< 走不了!" << endl;
Sleep(1500);
}
}
return 0;
}
总体和数据结构的教科书上的大差不差:以起点为中心,每向外一步作为一轮循环,循环中把可走的位置入队,下一轮循环把上一轮入队的位置出队并再以这些位置为中心往外走一步,把可走位置入队,一直这样循环,直到遇到终点位置或者队列中为空(因为每一个方向都走不了则队列循环后为空)。
(想象一下在没有障碍物的地图中,以起点为中心向外扩散)
在上述过程中,把可走位置入队的同时留下方向标记(上一个位置走到此位置的方向),在循环结束后从终点位置倒推即可找到一条回到起点的路径。
此路径为最优解(最优解可能不止一条),因为算法中是从起点往外每一步进行一轮判断,因此如果找到了终点,那么就是在最少的步数内找到了终点,此时即可结束循环,此为最优解。如果不结束,继续找下去可能可以找到用更多步数的路径。
本例与书中的不同:
1.在找到路径后利用system("cls")清屏重新输出,来实现逐步走向终点的效果。
2.在一些细节的实现上使用不同的尝试(例如 mapClass::auto_find_way()中使用sin(),直接使用地图做方向标记等)
3.支持循环多次寻路,支持重置障碍物位置
到此这篇关于c++ 基于BFS算法的走迷宫自动寻路的实现的文章就介绍到这了,更多相关C++ 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: C++ 基于BFS算法的走迷宫自动寻路的实现
本文链接: https://lsjlt.com/news/157592.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0