紫书第七章-----暴力求解法(路径寻找问题之八数码问题---bfs+哈希判重)

本文参考刘汝佳《算法竞赛入门经典》(第2版)

第199页八数码问题!思路是bfs,这里判重的问题,我采用紫书上的哈希方法,具体代码如下:

#include<iostream>
#include<cstring>
#include<stack>
#include<cstdio>
using namespace std;

const int maxn=1000000;//状态最大不超过9!,这里设置大一点

int dx[]={-1,1,0,0};
int dy[]={0,0,-1,1};

int st[maxn][9],goal[9];
int dis[maxn];//dis记录的就是步数
int head[maxn],next[maxn];
int par[maxn];//记录路径

//初始化,包括哈希查找表中用到的head的初始化
void init(){
    memset(dis,0,sizeof(dis));
    memset(head,0,sizeof(head));//head都初始化为0,其实就是起始每一个哈希值链表头指针均为空
    memset(next,0,sizeof(next));//next都初始化为0,其实就是起始每一个哈希值链表尾指针均为空
    memset(par,0,sizeof(par));
}

int hash_search(int a[9]){
    int v=0;
    for(int i=0;i<9;i++) v=v*10+a[i];
    return v%maxn;//这里假设了hash表长度也是maxn
}

bool try_to_insert(int rear){
    int h=hash_search(st[rear]);
    int u=head[h];//从具有同一个哈希值的一条链的头查起
    while(u){
        if(memcmp(st[u],st[rear],sizeof(st[rear]))==0) return false;
        u=next[u];
    }
    next[rear]=head[h];//把新来的rear永远指向具有同一哈希值的链表的表头
    head[h]=rear;//把新的哈希值的头指向此刻所在具有同一哈希值链表的表头
    return true;
}

int bfs(){
    init();
    int fro=1,rear=2;//bfs里,这里用到的暗含队列的头尾指针

    while(fro<rear){
        int flag=1;
        for(int i=0;i<9;i++){
            if(st[fro][i]!=goal[i]) {flag=0;break;}
        }
        if(flag) return fro;
        int z;
        for(int i=0;i<9;i++) if(st[fro][i]==0){z=i;break;}    //找到0所处的位置
                //上面这行坑死我了,我把fro写成1了,单步调试发现问题了……
        int x=z/3,y=z%3;
        for(int i=0;i<4;i++){
            int newx=x+dx[i];
            int newy=y+dy[i];
            int newz=newx*3+newy;
            if(newx>=0 && newx<3 && newy>=0 && newy<3){
                for(int i=0;i<9;i++) st[rear][i]=st[fro][i];//每走一步,更新一下st[rear]
                st[rear][newz]=st[fro][z];
                st[rear][z]=st[fro][newz];
                dis[rear]=dis[fro]+1;
                par[rear]=fro;
                if(try_to_insert(rear)) rear++;//如果成功插入哈希查找表,暗含队列指针后移一位
            }
        }
        fro++;
    }
    return 0;//所有路都走完一遍,无法达到目标
}

void print_path(int ans){
    cout<<"Start:"<<endl;
    for(int i=0;i<9;i++){
        cout<<st[1][i]<<" ";
        if((i+1)%3==0) cout<<endl;
    }
    cout<<"Goal:"<<endl;
    for(int i=0;i<9;i++){
        cout<<goal[i]<<" ";
        if((i+1)%3==0) cout<<endl;
    }
    cout<<endl;
    if(ans==0) {
        cout<<"There is no way to achieve our goal!"<<endl;
    }
    else{
        cout<<"The smallest number of steps is "<<dis[ans]<<". And we can go as follows!"<<endl;
        int u=par[ans];
        stack<int>sta;sta.push(ans);
        while((u!=1)){
            sta.push(u);
            u=par[u];
        }
        int step=0;
        while(!sta.empty()){
            cout<<"Step "<<++step<<endl;
            int v=sta.top();sta.pop();
            for(int i=0;i<9;i++){
                cout<<st[v][i]<<" ";
                if((i+1)%3==0) cout<<endl;
            }
        }
    }
}

int main()
{
    freopen("in.txt","r",stdin);
    for(int i=0;i<9;i++) cin>>st[1][i];//从st[1]开始不从0开始,是为了在try_to_insert中u最终是0(链表尾指针为0)
    for(int i=0;i<9;i++) cin>>goal[i];
    int ans=bfs();
    print_path(ans);
    return 0;
}

测试样例:

Start:
2 6 4
1 3 7
0 5 8
Goal:
8 1 5
7 3 6
4 0 2

The smallest number of steps is 31. And we can go as follows!
Step 1
2 6 4
0 3 7
1 5 8
Step 2
0 6 4
2 3 7
1 5 8
Step 3
6 0 4
2 3 7
1 5 8
Step 4
6 3 4
2 0 7
1 5 8
Step 5
6 3 4
2 5 7
1 0 8
Step 6
6 3 4
2 5 7
1 8 0
Step 7
6 3 4
2 5 0
1 8 7
Step 8
6 3 4
2 0 5
1 8 7
Step 9
6 3 4
0 2 5
1 8 7
Step 10
0 3 4
6 2 5
1 8 7
Step 11
3 0 4
6 2 5
1 8 7
Step 12
3 4 0
6 2 5
1 8 7
Step 13
3 4 5
6 2 0
1 8 7
Step 14
3 4 5
6 0 2
1 8 7
Step 15
3 4 5
0 6 2
1 8 7
Step 16
3 4 5
1 6 2
0 8 7
Step 17
3 4 5
1 6 2
8 0 7
Step 18
3 4 5
1 6 2
8 7 0
Step 19
3 4 5
1 6 0
8 7 2
Step 20
3 4 5
1 0 6
8 7 2
Step 21
3 0 5
1 4 6
8 7 2
Step 22
0 3 5
1 4 6
8 7 2
Step 23
1 3 5
0 4 6
8 7 2
Step 24
1 3 5
8 4 6
0 7 2
Step 25
1 3 5
8 4 6
7 0 2
Step 26
1 3 5
8 0 6
7 4 2
Step 27
1 0 5
8 3 6
7 4 2
Step 28
0 1 5
8 3 6
7 4 2
Step 29
8 1 5
0 3 6
7 4 2
Step 30
8 1 5
7 3 6
0 4 2
Step 31
8 1 5
7 3 6
4 0 2

本题解决代码中用哈希判重,当然可以暴力判重如下(只不过set比较慢而已):

set<int>vis;
bool try_to_insert(int rear){
    int v=0;
    for(int i=0;i<9;i++) v=v*10+st[rear][i];
    if(vis.count(v)) return false;
    vis.insert(v);
    return true;
}
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值