八数码

法一:广搜 + stl 实现

#include<stdio.h>
#include<set>
#include<iostream>
#include<string.h>
using namespace std;

typedef int State[9];
const int MAXSTATE = 1000000;
State st[MAXSTATE], goal ; 
int dist[MAXSTATE];

set<int>vis;
void init_lookup_table(){ vis.clear();}
int try_to_insert(int s){
	int v=0;
	for(int i = 0 ;i < 9 ; i ++ )v = v*10 + st[s][i];
	if(vis.count(v))return 0;
	vis.insert(v);
	return 1;
}

const int dx[] = {-1,1,0,0};
const int dy[] = {0,0,-1,1};
int bfs()
{
	init_lookup_table();
	int front = 1 , rear = 2 ;
	while(front<rear)
	{
		State& s = st[front];
		if(memcmp(goal,s,sizeof(s))==0)return front ;
		int z ;
		for(z = 0 ; z < 9 ; z++)if(!s[z])break;
		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<3 && newy<3 && newx>=0 && newy>=0)
			{
				State& t = st[rear];
				memcpy(&t,&s,sizeof(s));
				t[z] = s[newz] ;
    			t[newz] = s[z];
	    		dist[rear] = dist[front]+1;
		    	if(try_to_insert(rear))rear++;
			}
		}
		front++;
	}
	return 0;
}
int main()
{
	for(int i = 0 ; i<9 ; i++ )cin>>st[1][i];
	for(int i = 0 ; i<9 ; i++ )cin>>goal[i];
	int ans = bfs();
	if(ans>0)cout<<dist[ans]<<endl;
	else cout<<"-1"<<endl;
	return 0;
}


法二:bfs + 编码解码(康托展开)

int vis[36288],fact[9] ;

void init_lookup_table()
{
    fact[0]=1;
    for(int i = 0 ; i < 9 ; i++)fact[i] = fact[i-1]*i;
}

int try_to_insert(int s)
{
    int code = 0;
    for(int i = 0 ; i < 9 ; i++)
    {
        int cnt = 0;
        for(int j = 0 ; j < 9 ; j++)if(st[s][j]<st[s][i])cnt++;
        code+=fact[8-i]*cnt;
    }
    if(vis[code])return 0;
    return vis[code] = 1;
}


法三:bfs + 哈希

法四:双向bfs

法五:A*

法六:IDA*



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值