八数码 哈希表链表法

#include<bits/stdc++.h>
using namespace std;

typedef int State[9];
const int maxstate = 1e6;
State st[maxstate], goal;
int dist[maxstate];
const int dx[4] = { -1,1,0,0 };//用来控制x坐标的移动
const int dy[4] = { 0,0,-1,1 };//用来控制y坐标的移动
const int hashsize = 1e6 + 3;用来取模
int head[hashsize], nxt[maxstate];//head和nxt数组是用来构建哈希链表

int hashs(State& s)//构建哈希表
{
		int v = 0;
		for (int i = 0; i < 9; i++)	v = v * 10 + s[i];
		return v % hashsize;
}

int try_to_insert(int s)
{
		int h = hashs(st[s]);
		int u = head[h];
		while (u)
		{
				if (memcmp(st[u], st[s], sizeof(st[s])) == 0)	return 0;
				u = nxt[u];
		}
		nxt[s] = head[h];//可以看出这里使用的是链表法来解决冲突
		head[h] = s;
		return 1;
}

int bfs()
{
		int front = 1, rear = 2;
		while (front < rear)
		{
				State&s = st[front];//这里的“&”不是取地址,在c++中表示引用,有点类似于指针的感觉,就是如果你对s进行修改,那么相对应的st【】的那个也会修改;
				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 d = 0; d < 4; d++)
				{
						int newx = x + dx[d], newy = y + dy[d];
						int newz = newx * 3 + newy;
						if (newx < 0 || newx >= 3 || newy < 0 || newy >= 3)	continue;
						State& t = st[rear];
						memcpy(&t, &s, sizeof(s));
						t[newz] = s[z];
						t[z] = s[newz];
						dist[rear] = dist[front] + 1;
						if (try_to_insert(rear))	rear++;
				}
				front++;
		}
		return 0;
}

int main()
{
		for (int i = 0; i < 9; i++)		scanf("%d", &st[1][i]);//输入初始状态的八数码图
		for (int i = 0; i < 9; i++)		scanf("%d", &goal[i]);//输入你想要的终态八数码图
		int ans = bfs();//进行bfs搜索
		if (ans > 0)	printf("%d", dist[ans]);
		return 0;
}

  关于八数码,详见http://acm.hdu.edu.cn/showproblem.php?pid=1043

关于这道题,我也写了博客https://blog.csdn.net/qq_41670466/article/details/84316948里面使用康托展开,大家可以自己百度一下。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值