八数码C语言A算法详细代码
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
#include
#include
#include
#include
#include
using namespace std;
struct node{
int a[3][3]; //存放矩阵
int father; //父节点的位置
int gone; //是否遍历过,1为是,0为否
int fn; //评价函数的值
int x,y; //空格的坐标
int deep; //节点深度
};
vector
int mx[4]={-1,0,1,0};
int my[4]={0,-1,0,1}; //上下左右移动数组
int top; //当前节点在store中的位置
bool check(int num) //判断store[num]节点与目标节点是否相同,目标节点储存在store[0]中
{
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
if(store[num].a[i][j]!=store[0].a[i][j])
return false;
}
}
return true;
}
bool search(int num) //判断store[num]节点是否已经扩展过 ,没有扩展返回true
{
int pre=store[num].father; //pre指向store[num]的父节点位置
bool test=true;
while(!pre){ //循环直到pre为0,既初始节点
for(int i=0;i<3;i++){
for (int j=0;j<3;j++){
if(store[pre].a[i][j]!=store[num].a[i][j]){
test=false;
break;
}
}
if(test==false) break;
}
if(test==true) return false;
pre=store[pre].father; //pre继续指向store[pre]父节点位置}
return true;
}
void print(int num) //打印路径,store[num]为目标节点
{
vector
int pre=store[num].father;
temp.push_back(num);
while(pre!=0){ //从目标节点回溯到初始节点
temp.push_back(pre);
pre=store[pre].father;
}
cout< cout<<"*********数码移动步骤*********"< int mm=1; //步数 for(int m=temp.size()-1;m>=0;m--){ cout<<"---第"< for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ cout< } cout< } mm++; cout< } cout<<"所需步数为: "< return; } int get_fn(int num) //返回store[num]的评价函数值 { int fn_temp=0; //评价函数值 bool test=true; for(int i=0;i<3;i++){ //当找到一个值后,计算这个值位置与目标位置的距离差,test置 为false后继续寻找下一个值 for(int j=0;j<3;j++){ test=true; for(int k=0;k<3;k++){ for(int l=0;l<3;l++){ if((store[num].x!=i||store[num].y!=j)&&store[num].a[i][j]==store[0].a[k][l]){ //寻值时排除空格位 fn_temp=fn_temp+abs(i-k)+abs(j-l); test=false; } if(test==false) break; } if(test==false) break; } } } fn_temp=fn_temp+store[num].deep; //加上节点深度 return fn_temp; } void kongxy(int num) //获得空格坐标 { for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ if(store[num].a[i][j]==0){ store[num].x=i; store[num].y=j; } } } return; } int main() { cout<<"-----------A*算法解决8数码问题------------"< while(true){ store.clear(); //清空store vector int i,j,m,n,f; int min; //store[min]储存fn值最小的节点 int temp;