当前位置:   article > 正文

A*算法解决八数码问题(java实现)_a*算法求解8数码问题java

a*算法求解8数码问题java

        对于八数码问题,我们首先要判断当前的状态能不能到达目的状态,这里需要用到奇排列和偶排列的概念。八数码虽然是个二维数组,但也可以展开看成是一个一维序列。奇排列只能转换成奇排列,偶排列只能转换成偶排列。判断奇偶排列的方法就是:对于每个数,求出排在它之前的比它大的数的个数,然后将这些个数加起来,得到的数是奇数就是奇排列,是偶数就是偶排列,若起始状态和目标状态一个是奇排列一个数偶排列,那么肯定到达不了目标状态。        

        对于八数码问题,我们一般能想到的解法是广度优先搜索,但是由于广搜扩展了很多没有用的状态,导致复杂度非常高。而A*算法是一种启发式图搜索算法,其特点在于对估价函数的定义上,但本质还是个广度优先搜索。对于一般的启发式图搜索,总是选择估价函数 f 值最小的节点作为扩展节点。估价函数的设置多种多样,好的估价函数可以大幅缩短程序运行时间,下面介绍两种常见的解决八数码问题的估价函数:

        1、走到当前状态已付出的代价与到达目的状态仍需的代价之和。

        到达当前状态所付出的代价其实就是从初始状态到达当前状态所用的步数,这是我们可以确定的。但是到达目的状态仍需的代价却是未知的,是我们到达目的状态之后才能知道的。所以我们就用近似的方法,用一个可以求得出的量来近似代替到达目的状态仍需的代价。这个量就是,当前状态下的每个数字,走到它在目的状态中的位置所需的步数之和。例如当前状态是:

        2 1 3
        0 8 4
        6 7 5

        目的状态是:

        2 1 3
        0 4 5
        6 7 8

        那么0~9走到它在目的状态中的位置所需的步数分别是:0,0,0,0,1,1,0,0,2。其中0,1,2,3,6,7不需要移动,4和5需要移动一步,8需要移动两步。总和就是4。

        明确了估价函数之后,就可以用优先队列来进行广度优先搜索,代码如下:

  1. import java.util.*;
  2. public class Code {
  3. // 用于保存初始状态和目标状态
  4. static int N = 0;
  5. static int[][] MT = new int[3][3];
  6. static int[][] endMT = new int[3][3];
  7. // 用于保存目标状态中每个数字所在的位置
  8. static HashMap<Integer, int[]> map = new HashMap<>();
  9. static int[][] dir = { { 0, 1 }, { 0, -1 }, { -1, 0 }, { 1, 0 } };
  10. // 用于保存所有出现过的状态
  11. static List<int[][]> marke = new ArrayList<int[][]>();
  12. static public class node implements Cloneable {
  13. // 当前结点状态中空格的位置
  14. int x;
  15. int y;
  16. // 估价函数g和h
  17. int g;
  18. int h;
  19. // 记录步数
  20. int step;
  21. // 当前状态各位置的数字
  22. int[][] mt = new int[N][];
  23. // 保存路径
  24. List<int[][]> path = new ArrayList<int[][]>();
  25. // 构造函数
  26. public node(int x, int y, int g, int h, int step, int[][] mt, List<int[][]> path) {
  27. super();
  28. this.x = x;
  29. this.y = y;
  30. this.g = g;
  31. this.h = h;
  32. this.step = step;
  33. this.mt = mt;
  34. this.path = path;
  35. }
  36. // 用于克隆对象,这样在扩展时,下一个状态可以保留上一个状态的路径
  37. public Object clone() {
  38. node nd = null;
  39. try {
  40. nd = (node) super.clone();
  41. } catch (CloneNotSupportedException e) {
  42. // TODO 自动生成的 catch 块
  43. e.printStackTrace();
  44. }
  45. nd.mt = new int[3][];
  46. for (int r = 0; r < N; r++) {
  47. nd.mt[r] = this.mt[r].clone();
  48. }
  49. nd.path = new ArrayList<int[][]>();
  50. nd.path.addAll(this.path);
  51. return nd;
  52. }
  53. }
  54. static Comparator<node> cmp = new Comparator<node>() {
  55. @Override
  56. public int compare(node o1, node o2) {
  57. // TODO Auto-generated method stub
  58. return (o1.g + o1.h) - (o2.g + o2.h);
  59. }
  60. };
  61. static boolean input_date() {
  62. @SuppressWarnings("resource")
  63. Scanner in = new Scanner(System.in);
  64. N = 3;
  65. // 求奇偶排列的变量
  66. int[] startNum = new int[N * N];
  67. int[] endNum = new int[N * N];
  68. int cnt1 = 0;
  69. int cnt2 = 0;
  70. // 输入初始状态和目标状态
  71. System.out.println("请输入初始状态(0代表空白位置):");
  72. for (int i = 0; i < N; i++) {
  73. MT[i][0] = in.nextInt();
  74. MT[i][1] = in.nextInt();
  75. MT[i][2] = in.nextInt();
  76. for (int j = 0; j < N; j++)
  77. if (MT[i][j] != 0)
  78. startNum[cnt1++] = MT[i][j];
  79. }
  80. System.out.println("请输入目标状态(0代表空白位置):");
  81. for (int i = 0; i < N; i++) {
  82. endMT[i][0] = in.nextInt();
  83. endMT[i][1] = in.nextInt();
  84. endMT[i][2] = in.nextInt();
  85. // 将默认的map覆盖掉,用于计算估价函数h
  86. for (int j = 0; j < N; j++) {
  87. int[] temp = { i, j };
  88. map.put(endMT[i][j], temp);
  89. if (endMT[i][j] != 0)
  90. endNum[cnt2++] = endMT[i][j];
  91. }
  92. }
  93. //判断问题是否有解
  94. int st = 0;
  95. int et = 0;
  96. for (int i = N * N - 2; i >= 0; i--) {
  97. for (int j = i - 1; j >= 0; j--) {
  98. if (startNum[i] > startNum[j])
  99. st++;
  100. if (endNum[i] > endNum[j])
  101. et++;
  102. }
  103. }
  104. if (st % 2 == et % 2)
  105. return true;
  106. return false;
  107. }
  108. static int A_star(int[][] MT) {
  109. // 找到空格所在的位置
  110. int x0 = 0, y0 = 0;
  111. for (x0 = 0; x0 < N; x0++) {
  112. boolean flag = false;
  113. for (y0 = 0; y0 < N; y0++) {
  114. if (MT[x0][y0] == 0) {
  115. flag = true;
  116. break;
  117. }
  118. }
  119. if (flag)
  120. break;
  121. }
  122. // 优先队列
  123. Queue<node> q = new PriorityQueue<node>(cmp);
  124. int[][] curmt = new int[N][];
  125. int[][] markemt = new int[N][];
  126. // clone方法用于复制一个对象,在内存中开辟同样大小的空间
  127. for (int r = 0; r < N; r++)
  128. curmt[r] = MT[r].clone();
  129. for (int r = 0; r < N; r++)
  130. markemt[r] = MT[r].clone();
  131. List<int[][]> path = new ArrayList<int[][]>();
  132. // path加入初始状态
  133. path.add(MT);
  134. // 创建一个结点,表示空格,估价函数初始化为0
  135. node cur = new node(x0, y0, 0, 0, 0, curmt, path);
  136. // 将出现过的所有状态都加入marke集合中
  137. marke.add(markemt);
  138. // 入队并遍历
  139. q.add(cur);
  140. while (!q.isEmpty()) {
  141. // 队首元素出队
  142. cur = (node) q.poll().clone();
  143. boolean tag = false;
  144. // 判断当前状态是不是目标状态
  145. for (int i = 0; i < N; i++) {
  146. for (int j = 0; j < N; j++) {
  147. if (cur.mt[i][j] != endMT[i][j]) {
  148. tag = true;
  149. }
  150. }
  151. }
  152. // 如果是,输出结果
  153. if (!tag) {
  154. System.out.println("共扩展了" + marke.size() + "个结点");
  155. return cur.step;
  156. }
  157. // 遍历四种方向上的移动
  158. for (int i = 0; i < 4; i++) {
  159. node next = (node) cur.clone();
  160. next.x = cur.x + dir[i][0];
  161. next.y = cur.y + dir[i][1];
  162. // 如果空格位置不合法就忽略这个状态
  163. if (next.x >= 0 && next.x < N && next.y >= 0 && next.y < N) {
  164. // 因为上面next定义时clone了cur,所以在这里更新空格的位置
  165. next.mt[cur.x][cur.y] = next.mt[next.x][next.y];
  166. next.mt[next.x][next.y] = 0;
  167. boolean mark = false;
  168. // 判断当前状态有没有出现过
  169. for (int c = 0; c < marke.size(); c++) {
  170. int x = 0, y = 0;
  171. for (x = 0; x < N; x++) {
  172. for (y = 0; y < N; y++)
  173. if (marke.get(c)[x][y] != next.mt[x][y])
  174. break;
  175. if (y < N)
  176. break;
  177. }
  178. if (x == N && y == N)
  179. mark = true;
  180. }
  181. // 若出现过则忽略这个状态
  182. if (!mark) {
  183. // 更新next的属性值step和估价函数g
  184. next.step++;
  185. next.g++;
  186. // 将当前状态加入到结点的path中,因为程序中定义结点时,clone了上一个结点,所以在当前结点添加的状态也会clone到下一个结点中。
  187. next.path.add(next.mt);
  188. // 计算估价函数h,获取每个位置的数字,到达目标状态中对应数字的位置,所需要的步数
  189. int count = 0;
  190. for (int row = 0; row < N; row++) {
  191. for (int cow = 0; cow < N; cow++) {
  192. if (cow != 0 && next.mt[row][cow] != endMT[row][cow]) {
  193. count += Math.abs(row - map.get(next.mt[row][cow])[0])
  194. + Math.abs(cow - map.get(next.mt[row][cow])[1]);
  195. }
  196. }
  197. }
  198. next.h = count;
  199. // 将扩展状态入队
  200. int[][] newmt = new int[N][];
  201. for (int r = 0; r < N; r++)
  202. newmt[r] = next.mt[r].clone();
  203. marke.add(newmt);
  204. q.add((node) next.clone());
  205. }
  206. }
  207. }
  208. }
  209. return 0;
  210. }
  211. public static void main(String[] args) {
  212. System.out.println("-------------------------八数码A*算法实现------------------------");
  213. boolean flag = input_date();
  214. if (!flag) {
  215. System.out.println("问题无解!");
  216. } else {
  217. int ans = A_star(MT);
  218. System.out.println("移动步数:" + Integer.toString(ans));
  219. }
  220. }
  221. }

运行结果:

初始状态:

2 1 3

0 8 4

6 7 5

目标状态:

2 1 3

0 4 5

6 7 8

        估价函数二:当前状态与目标状态位置不符的数码数目,例如当前状态为:

2 1 3
0 8 4
6 7 5

目标状态为:

2 1 3
0 4 5
6 7 8

        在初始状态中,8、4、5这三个数与目标状态不符,所以估价函数值就是3。程序代码与估价函数一的代码几乎相同,只需要修改优先队列的优先策略函数即可。与上面代码的区别为:

  1. static Comparator<node> cmp = new Comparator<node>() {
  2. @Override
  3. public int compare(node o1, node o2) {
  4. //修改估价函数一的优先策略
  5. //return (o1.g + o1.h) - (o2.g + o2.h);
  6. return o1.g - o2.g;
  7. }
  8. };

        还是用上面的例子运行一下试试:

        可见这两种估价函数都可以得到正确的结果,只是第二种估价函数的扩展结点更多,运行速度肯定也更慢。那我们现在换一个例子看看他们各自的表现如何:

初始状态:

2 1 3
0 8 4
6 7 5

目的状态:

2 1 3
0 4 5
6 7 8

估价函数一:

估价函数二:

广搜:

        在这个例子中差距已经非常明显了,估价函数二扩展了187个结点,广搜扩展了467个结点,这也就意味着更长的运行时间。

 

更新

        中间过程其实就是从队列中取出的各个结点,输出这个过程就是输出每次从队列中取出来的结点,再设置一个变量来记录取出结点的个数。所以我们首先在对队列进行遍历的while循环之前设置变量:

int count_step = 0;

        然后在取出结点的语句后将该节点输出:

  1. // 队首元素出队
  2. cur = (node) q.poll().clone();
  3. System.out.println("----------第" + Integer.toString(count_step++) + "步----------");
  4. for (int i = 0; i < 3; i++) {
  5. for (int j = 0; j < 3; j++)
  6. System.out.print(cur.mt[i][j] + " ");
  7. System.out.println();
  8. }
  9. System.out.println();

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/786747
推荐阅读
相关标签
  

闽ICP备14008679号