当前位置:   article > 正文

A*算法之八数码问题(java代码)_一个九宫格,有八个数字1-8已经确定位置,剩下一个空格以0表示,0可以和上下左右的数

一个九宫格,有八个数字1-8已经确定位置,剩下一个空格以0表示,0可以和上下左右的数

一、问题描述

     一个九宫格,有八个数字1-8已经确定位置,剩下一个空格以0表示,0可以和上下左右的数字交换位置。如果给定一个初始状态,一个目标状态,求解从初始状态到目标状态最少要移动多少步

二、算法

      公式表示为: f(n)=g(n)+h(n),其中:

  • f(n) 是从初始状态经由状态n到目标状态的代价估计,称作估计函数
  • g(n) 是在状态空间从初始状态到状态n的实际代价,称作节点深度(例子中是当前执行了几步
  • h(n) 是从状态n到目标状态的的估计代价,称作启发函数(例子中是当前状态和目标状态有几个数字位置是不一致的,比如初始状态1,2,8和目标状态不一致,0代表空格不算,所以h=3

举个例子:

图中启发函数h(x)按与目标状态不一样的个数来计算

三、算法及步骤

1.设计八数码节点状态结构

存储结构采取一维数组int[] num,估计函数f(n)、节点深度d(n)、启发函数h(n),以及要定义每一个状态的父状态。 这里额外设置了一个answer的线性表,用于存储最终答案路径(为什么额外设计它后面会解释)后面的getter和setter不额外截图了

2.可达性判断函数设计

这里是通过计算八数码节点的逆序数判断,两个节点状态的逆序数必须同奇或者同偶才是可达状态(也就是初始状态的逆序数+目标状态的逆序数=偶数)。什么是逆序数呢?     如果一对数的前后位置与大小顺序相反,也就是如果较大的数在较小的数之前,那么就算一个逆序对,逆序数+1。逆序数是偶数的排列称作偶排列,是奇数的排列称作奇排列。如在 2,4,3,1 中,21,43,41,31是逆序,逆序数是4,是偶排列。计算八数码节点的逆序数时必须要把代表空格的0去掉,这里是原博客没有注意的地方,判断可达性的函数修改如下:

3.估价函数设计

    估计函数是由两部分构成的,节点深度d(n)其实就是当前已经走的步数,不用额外设计函数;启发函数h(n)是比较重要的一个部分,启发函数的设计直接影响了估计函数的效率,有几种定义方法:

  • 当前节点与目标节点差异的度量 => 当前结点与目标节点相比,位置不符的数字个数
  • 当前节点与目标节点距离的度量 => 当前结点与目标节点格局位置不符的数字移动到目标节点中对应位置的最短距离之和
  • 每一对逆序数字的某倍数 位置不符的数字个数的总和+逆序数的三倍

这里选择的是第一种,计算当前节点与目标节点相比,有多少个数字的位置不符

4.A*算法

依照上面算法流程图设计就可以了。额外需要注意的是: open表和close表使用ArrayList保存状态,open表存放所有的状态,close表则存放在搜索过程中一些较优的状态,但是close表并不是最终我们走的路径。因为我们要在搜索完成找到目标状态之后,根据父状态还原出原路径,因此原博客中的算法只能逆序输出路径。所以我额外设计了一个线性表answer就是为了在还原过程中保存我们所走的路径,从而实现正序的输出。对输出路径的函数修改:

三、代码

  1. package com.hyh.java_algorithm;
  2. import java.util.ArrayList;
  3. import java.util.Arrays;
  4. import java.util.Collections;
  5. import java.util.Scanner;
  6. @SuppressWarnings("rawtypes")
  7. public class EightPuzzle implements Comparable{
  8. private int[] num = new int[9];
  9. private int evaluation; //估计函数f(n):从起始状态到目标的最小估计值
  10. private int depth; //d(n):当前的深度,即走到当前状态的步骤
  11. private int misposition; //启发函数 h(n):到目标的最小估计(记录和目标状态有多少个数不同)
  12. private EightPuzzle parent; //当前状态的父状态
  13. private ArrayList<EightPuzzle> answer = new ArrayList<EightPuzzle>(); //保存最终路径
  14. public int[] getNum() {
  15. return num;
  16. }
  17. public void setNum(int[] num) {
  18. this.num = num;
  19. }
  20. public int getDepth() {
  21. return depth;
  22. }
  23. public void setDepth(int depth) {
  24. this.depth = depth;
  25. }
  26. public int getEvaluation() {
  27. return evaluation;
  28. }
  29. public void setEvaluation(int evaluation) {
  30. this.evaluation = evaluation;
  31. }
  32. public int getMisposition() {
  33. return misposition;
  34. }
  35. public void setMisposition(int misposition) {
  36. this.misposition = misposition;
  37. }
  38. public EightPuzzle getParent() {
  39. return parent;
  40. }
  41. public void setParent(EightPuzzle parent) {
  42. this.parent = parent;
  43. }
  44. /**
  45. * 判断当前状态是否为目标状态
  46. * @param target
  47. * @return
  48. */
  49. public boolean isTarget(EightPuzzle target){
  50. return Arrays.equals(getNum(), target.getNum());
  51. }
  52. /**
  53. * 求估计函数f(n) = g(n)+h(n);
  54. * 初始化状态信息
  55. * @param target
  56. */
  57. public void init(EightPuzzle target){
  58. int temp = 0;
  59. for(int i=0;i<9;i++){
  60. if(num[i]!=target.getNum()[i])
  61. temp++; //记录当前节点与目标节点差异的度量
  62. }
  63. this.setMisposition(temp);
  64. if(this.getParent()==null){
  65. this.setDepth(0); //初始化步数(深度)
  66. }else{
  67. this.depth = this.parent.getDepth()+1;//记录步数
  68. }
  69. this.setEvaluation(this.getDepth()+this.getMisposition());//返回当前状态的估计值
  70. }
  71. /**
  72. * 求逆序值并判断是否有解,逆序值同奇或者同偶才有解
  73. * @param target
  74. * @return 有解:true 无解:false
  75. */
  76. public boolean isSolvable(EightPuzzle target){
  77. int reverse = 0;
  78. for(int i=0;i<9;i++){
  79. for(int j=0;j<i;j++){//遇到0跳过
  80. if(num[j]>num[i] && num[j]!=0 && num[i]!= 0)
  81. reverse++;
  82. if(target.getNum()[j]>target.getNum()[i] && target.getNum()[j]!=0 && target.getNum()[i]!=0)
  83. reverse++;
  84. }
  85. }
  86. if(reverse % 2 == 0)
  87. return true;
  88. return false;
  89. }
  90. /**
  91. * 对每个子状态的f(n)进行由小到大排序
  92. * */
  93. @Override
  94. public int compareTo(Object o) {
  95. EightPuzzle c = (EightPuzzle) o;
  96. return this.evaluation-c.getEvaluation();//默认排序为f(n)由小到大排序
  97. }
  98. /**
  99. * @return 返回0在八数码中的位置
  100. */
  101. public int getZeroPosition(){
  102. int position = -1;
  103. for(int i=0;i<9;i++){
  104. if(this.num[i] == 0){
  105. position = i;
  106. }
  107. }
  108. return position;
  109. }
  110. /**
  111. * 去重,当前状态不重复返回-1
  112. * @param open 状态集合
  113. * @return 判断当前状态是否存在于open表中
  114. */
  115. public int isContains(ArrayList<EightPuzzle> open){
  116. for(int i=0; i<open.size(); i++){
  117. if(Arrays.equals(open.get(i).getNum(), getNum())){
  118. return i;
  119. }
  120. }
  121. return -1;
  122. }
  123. /**
  124. * 一维数组
  125. * @return 小于3(第一行)的不能上移返回false
  126. */
  127. public boolean isMoveUp() {
  128. int position = getZeroPosition();
  129. if(position<=2){
  130. return false;
  131. }
  132. return true;
  133. }
  134. /**
  135. *
  136. * @return 大于6(第三行)返回false
  137. */
  138. public boolean isMoveDown() {
  139. int position = getZeroPosition();
  140. if(position>=6){
  141. return false;
  142. }
  143. return true;
  144. }
  145. /**
  146. *
  147. * @return 0,3,6(第一列)返回false
  148. */
  149. public boolean isMoveLeft() {
  150. int position = getZeroPosition();
  151. if(position%3 == 0){
  152. return false;
  153. }
  154. return true;
  155. }
  156. /**
  157. *
  158. * @return 2,5,8(第三列)不能右移返回false
  159. */
  160. public boolean isMoveRight() {
  161. int position = getZeroPosition();
  162. if((position)%3 == 2){
  163. return false;
  164. }
  165. return true;
  166. }
  167. /**
  168. *
  169. * @param move 0:上,1:下,2:左,3:右
  170. * @return 返回移动后的状态
  171. */
  172. public EightPuzzle moveUp(int move){
  173. EightPuzzle temp = new EightPuzzle();
  174. int[] tempnum = num.clone();
  175. temp.setNum(tempnum);
  176. int position = getZeroPosition(); //0的位置
  177. int p=0; //与0换位置的位置
  178. switch(move){
  179. case 0:
  180. p = position-3;
  181. temp.getNum()[position] = num[p];
  182. break;
  183. case 1:
  184. p = position+3;
  185. temp.getNum()[position] = num[p];
  186. break;
  187. case 2:
  188. p = position-1;
  189. temp.getNum()[position] = num[p];
  190. break;
  191. case 3:
  192. p = position+1;
  193. temp.getNum()[position] = num[p];
  194. break;
  195. }
  196. temp.getNum()[p] = 0;
  197. return temp;
  198. }
  199. /**
  200. * 按照3*3格式输出
  201. */
  202. public void print(){
  203. for(int i=0;i<9;i++){
  204. if(i%3 == 2){
  205. System.out.println(this.num[i]);
  206. }else{
  207. System.out.print(this.num[i]+" ");
  208. }
  209. }
  210. }
  211. /**
  212. * 将最终答案路径保存下来并输出
  213. */
  214. public void printRoute(){
  215. EightPuzzle temp = null;
  216. int count = 0;
  217. temp = this;
  218. System.out.println("----------开始移动----------");
  219. while(temp!=null){
  220. answer.add(temp);
  221. temp = temp.getParent();
  222. count++;
  223. }
  224. for(int i=answer.size()-1 ; i>=0 ; i--){
  225. answer.get(i).print();
  226. System.out.println("--------------------");
  227. }
  228. System.out.println("最小移动步数:"+(count-1));
  229. }
  230. /**
  231. *
  232. * @param open open表
  233. * @param close close表
  234. * @param parent 父状态
  235. * @param target 目标状态
  236. */
  237. public void operation(ArrayList<EightPuzzle> open,ArrayList<EightPuzzle> close,EightPuzzle parent,EightPuzzle target){
  238. if(this.isContains(close) == -1){//如果不在close表中
  239. int position = this.isContains(open);//获取在open表中的位置
  240. if(position == -1){//如果也不在open表中
  241. this.parent = parent;//指明它的父状态
  242. this.init(target);//计算它的估计值
  243. open.add(this);//把它添加进open表
  244. }else{//如果它在open表中
  245. if(this.getDepth() < open.get(position).getDepth()){//跟已存在的状态作比较,如果它的步数较少则是较优解
  246. open.remove(position);//把已经存在的相同状态替换掉
  247. this.parent = parent;
  248. this.init(target);
  249. open.add(this);
  250. }
  251. }
  252. }
  253. }
  254. @SuppressWarnings("unchecked")
  255. public static void main(String args[]){
  256. //定义open表
  257. ArrayList<EightPuzzle> open = new ArrayList<EightPuzzle>();
  258. ArrayList<EightPuzzle> close = new ArrayList<EightPuzzle>();
  259. EightPuzzle start = new EightPuzzle();
  260. EightPuzzle target = new EightPuzzle();
  261. // int stnum[] = {8,6,7,2,5,4,3,0,1};
  262. // int tanum[] = {6,4,7,8,5,0,3,2,1};
  263. Scanner s = new Scanner(System.in);
  264. int stnum[] = new int[9];
  265. int tanum[] = new int[9];
  266. System.out.println("请输入初始状态:");
  267. for(int i = 0; i< 9; i++){
  268. stnum[i] = s.nextInt();
  269. }
  270. System.out.println("请输入目标状态:");
  271. for(int j= 0; j< 9; j++){
  272. tanum[j] = s.nextInt();
  273. }
  274. s.close();
  275. start.setNum(stnum);
  276. target.setNum(tanum);
  277. long startTime=System.currentTimeMillis();
  278. if(start.isSolvable(target)){
  279. //初始化初始状态
  280. start.init(target);
  281. open.add(start);
  282. while(open.isEmpty() == false){
  283. Collections.sort(open); //按照evaluation的值排序
  284. EightPuzzle best = open.get(0); //从open表中取出最小估值的状态并移出open表
  285. open.remove(0);
  286. close.add(best);
  287. if(best.isTarget(target)){
  288. //输出
  289. best.printRoute();
  290. long end=System.currentTimeMillis();
  291. System.out.println("程序运行 "+ (end-startTime) +" ms");
  292. System.exit(0);
  293. }
  294. int move;
  295. //由best状态进行扩展并加入到open表中
  296. //0的位置上移之后状态不在close和open中设定best为其父状态,并初始化f(n)估值函数
  297. if(best.isMoveUp()){//可以上移的话
  298. move = 0;//上移标记
  299. EightPuzzle up = best.moveUp(move);//best的一个子状态
  300. up.operation(open, close, best, target);
  301. }
  302. //0的位置下移之后状态不在close和open中设定best为其父状态,并初始化f(n)估值函数
  303. if(best.isMoveDown()){
  304. move = 1;
  305. EightPuzzle down = best.moveUp(move);
  306. down.operation(open, close, best, target);
  307. }
  308. //0的位置左移之后状态不在close和open中设定best为其父状态,并初始化f(n)估值函数
  309. if(best.isMoveLeft()){
  310. move = 2;
  311. EightPuzzle left = best.moveUp(move);
  312. left.operation(open, close, best, target);
  313. }
  314. //0的位置右移之后状态不在close和open中设定best为其父状态,并初始化f(n)估值函数
  315. if(best.isMoveRight()){
  316. move = 3;
  317. EightPuzzle right = best.moveUp(move);
  318. right.operation(open, close, best, target);
  319. }
  320. }
  321. }else{
  322. System.out.println("目标状态不可达");
  323. }
  324. }
  325. }

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

闽ICP备14008679号