您现在的位置是:首页 > 技术教程 正文

人工智能-A*启发式搜索算法解决八数码问题 Python实现

admin 阅读: 2024-04-02
后台-插件-广告管理-内容页头部广告(手机)

一.问题描述

        八数码问题也称为九宫问题。在 3×3 的棋盘,摆有八个棋子,每个棋子上标有 1 至 8 的某一数字,不同棋子上标的数字不相同。棋盘上还有一个空格(以数字 0 来表示),与空 格相邻的棋子可以移到空格中。 要求解决的问题是:给出一个初始状态和一个目标状态,找出一种从初始转变成目标状态的移动棋子步数最少的移动步骤。

该问题可用A*启发式搜索算法求解。

A*算法的估价函数如下: 

        其中启发函数可选择w(n)和p(n)两种,本文以w(n)为例编写程序


二.算法实现【理论部分】

本文以如下情况为例进行分析:

         1.对问题进行抽象

                 ①.操作算子的选取

                若着眼在数码上,则相应的操作算子就是数码的移动,可知共有4(方向)*8(码的个数)=32 种算子,设计起来较为复杂。

                若着眼在空格上,则相应的操作算子就是空格的移动,在最理想的情况下【即空格在棋盘正中间时】,最多有4种算子【上移up,下移down,左移left,右移right】,设计较为简单。

                综上所述,本程序选择着眼于空格,使用上下左右四种操作算子进行程序编写

               ②.数码移动过程的抽象

                可将数码在3*3棋盘上的分布抽象为一维数组,这样每次空格的移动就等价于交换一维数组种两个元素的位置,如下图所示:

     

 至此,数码的移动问题转换成了寻找两个待交换元素在数组中的下标交换的问题

                2.实际执行过程

                        ①.搜索树

✅2023/12/17修正:

下图搜索树中的A(4)应该修改为A(6)

因为此时序列中共有:

2,8,3,1,6,4,(0),7,5 六个元素(标红)不在【目标位置】

1,2,3,8,(0),4,7,6,5(目标序列)

由上图的搜索树可知:

        树上的任意一个节点应该包含如下信息:

                ·该节点在树中的深度

                ·该节点的估价函数值 f(n)

                · 该节点的数码序列【抽象为一维数组】

                        ②.open表和closed表

由上表可知:

        open表中存放的是按估价函数值排序的节点,closed表存放的是每次从循环从open表中取出的第一个节点,直到取出节点的数码序列等于最终的数码序列,算法结束。 

          3.无解的情况

首先明确: 八数码问题是存在无解的情况的,在编写程序时,首先就需要判断初始序列和目标序列之间的变换是否是有解的,若将无解的两个序列执行算法,算法将入死循环

        两个状态有无解的判断,由两个序列的逆序数奇偶性决定,若两序列逆序数同为奇数或同为偶数,则两序列的变换有解,否则无解。

        何为逆序数? 如何求逆序数? 看这篇文章,这里不多赘述  逆序数文章

            4.操作算子的选择

                       ①.边界条件                   

                         ②.防止死循环

前一次执行UP操作,下一次迭代时应该禁用DOWN操作

前一次执行LEFT操作,下一次迭代应该禁用RIGHT操作 ,

反之亦然,目的是为了避免出现死循环

具体示例如下图:        

                总之,操作算子的选择在不考虑②中的约束条件时,其选取是的结果是十分固定的,例如0位置只能选择DOWN和RIGHT,5位置只能选择LEFT,UP和DOWN。在实际程序中可根据元素在数组中的位置+约束条件得到此次可选择的操作算子。

        5.数据结构的设计

        经过如上分析可知,要实现算法,关键要设计出搜索树中每个节点的数据结构,本次设计的结构如下:

  1. class statusObject:
  2. def __init__(self):
  3. # 当前状态的序列
  4. self.array = []
  5. # 当前状态的估价函数值
  6. self.Fn = 0
  7. # cameFrom表示该状态由上一步由何种operation得到
  8. # 目的是为了过滤 【死循环】
  9. # 0表示初始无状态 1表示up 2表示down 3表示left 4表示right
  10. self.cameFrom = 0
  11. # 第一次生成该节点时在图中的深度 计算估价函数使用
  12. self.Dn = 0
  13. # 该节点的父亲节点,用于最终溯源最终解
  14. self.Father = statusObject

三.算法实现【代码部分】

         1.流程图:

                 2.程序源码

程序使用了numpy包,运行前请自行安装

另外在调试过程中使用了很多print语句查看结果,现已注释,若不需要请自行删除

  1. import operator
  2. import sys
  3. import numpy as np
  4. class statusObject:
  5. def __init__(self):
  6. # 当前状态的序列
  7. self.array = []
  8. # 当前状态的估价函数值
  9. self.Fn = 0
  10. # cameFrom表示该状态由上一步由何种operation得到
  11. # 目的是为了过滤 【死循环】
  12. # 0表示初始无状态 1表示up 2表示down 3表示left 4表示right
  13. self.cameFrom = 0
  14. # 第一次生成该节点时在图中的深度 计算估价函数使用
  15. self.Dn = 0
  16. self.Father = statusObject
  17. def selectOperation(i, cameFrom):
  18. # @SCY164759920
  19. # 根据下标和cameFromReverse来选择返回可选择的操作
  20. selectd = []
  21. if (i >= 3 and i <= 8 and cameFrom != 2): # up操作
  22. selectd.append(1)
  23. if (i >= 0 and i <= 5 and cameFrom != 1): # down操作
  24. selectd.append(2)
  25. if (i == 1 or i == 2 or i == 4 or i == 5 or i == 7 or i == 8): # left操作
  26. if (cameFrom != 4):
  27. selectd.append(3)
  28. if (i == 0 or i == 1 or i == 3 or i == 4 or i == 6 or i == 7): # right操作
  29. if (cameFrom != 3):
  30. selectd.append(4)
  31. return selectd
  32. def up(i):
  33. return i - 3
  34. def down(i):
  35. return i + 3
  36. def left(i):
  37. return i - 1
  38. def right(i):
  39. return i + 1
  40. def setArrayByOperation(oldIndex, array, operation):
  41. # i为操作下标
  42. # 根据operation生成新状态
  43. if (operation == 1): # up
  44. newIndex = up(oldIndex) # 得到交换的下标
  45. if (operation == 2): # down
  46. newIndex = down(oldIndex)
  47. if (operation == 3): # left
  48. newIndex = left(oldIndex)
  49. if (operation == 4): # right
  50. newIndex = right(oldIndex)
  51. # 对调元素的值
  52. temp = array[newIndex]
  53. array[newIndex] = array[oldIndex]
  54. array[oldIndex] = temp
  55. return array
  56. def countNotInPosition(current, end): # 判断不在最终位置的元素个数
  57. count = 0 # 统计个数
  58. current = np.array(current)
  59. end = np.array(end)
  60. for index, item in enumerate(current):
  61. if ((item != end[index]) and item != 0):
  62. count = count + 1
  63. return count
  64. def computedLengthtoEndArray(value, current, end): # 两元素的下标之差并去绝对值
  65. def getX(index): # 获取当前index在第几行
  66. if 0 <= index <= 2:
  67. return 0
  68. if 3 <= index <= 5:
  69. return 1
  70. if 6 <= index <= 8:
  71. return 2
  72. def getY(index): # 获取当前index在第几列
  73. if index % 3 == 0:
  74. return 0
  75. elif (index + 1) % 3 == 0:
  76. return 2
  77. else:
  78. return 1
  79. currentIndex = current.index(value) # 获取当前下标
  80. currentX = getX(currentIndex)
  81. currentY = getY(currentIndex)
  82. endIndex = end.index(value) # 获取终止下标
  83. endX = getX(endIndex)
  84. endY = getY(endIndex)
  85. length = abs(endX - currentX) + abs(endY - currentY)
  86. return length
  87. def countTotalLength(current, end):
  88. # 根据current和end计算current每个棋子与目标位置之间的距离和【除0】
  89. count = 0
  90. for item in current:
  91. if item != 0:
  92. count = count + computedLengthtoEndArray(item, current, end)
  93. return count
  94. def printArray(array): # 控制打印格式
  95. print(str(array[0:3]) + '\n' + str(array[3:6]) + '\n' + str(array[6:9]) + '\n')
  96. def getReverseNum(array): # 得到指定数组的逆序数 包括0
  97. count = 0
  98. for i in range(len(array)):
  99. for j in range(i + 1, len(array)):
  100. if array[i] > array[j]:
  101. count = count + 1
  102. return count
  103. openList = [] # open表 存放实例对象
  104. closedList = [] # closed表
  105. endArray = [1, 2, 3, 8, 0, 4, 7, 6, 5] # 最终状态
  106. countDn = 0 # 执行的次数
  107. initObject = statusObject() # 初始化状态
  108. # initObject.array = [2, 8, 3, 1, 6, 4, 7, 0, 5]
  109. initObject.array = [2, 8, 3, 1, 6, 4, 7, 0, 5]
  110. # initObject.array = [2, 1, 6, 4, 0, 8, 7, 5, 3]
  111. initObject.Fn = countDn + countNotInPosition(initObject.array, endArray)
  112. # initObject.Fn = countDn + countTotalLength(initObject.array, endArray)
  113. openList.append(initObject)
  114. zeroIndex = openList[0].array.index(0)
  115. # 先做逆序奇偶性判断 0位置不算
  116. initRev = getReverseNum(initObject.array) - zeroIndex # 起始序列的逆序数
  117. print("起始序列逆序数", initRev)
  118. endRev = getReverseNum(endArray) - endArray.index(0) # 终止序列的逆序数
  119. print("终止序列逆序数", endRev)
  120. res = countTotalLength(initObject.array, endArray)
  121. # print("距离之和为", res)
  122. # @SCY164759920
  123. # 若两逆序数的奇偶性不同,则该情况无解
  124. if((initRev%2==0 and endRev%2==0) or (initRev%2!=0 and endRev%2!=0)):
  125. finalFlag = 0
  126. while(1):
  127. # 判断是否为end状态
  128. if(operator.eq(openList[0].array,endArray)):
  129. # 更新表,并退出
  130. deep = openList[0].Dn
  131. finalFlag = finalFlag +1
  132. closedList.append(openList[0])
  133. endList = []
  134. del openList[0]
  135. if(finalFlag == 1):
  136. father = closedList[-1].Father
  137. endList.append(endArray)
  138. print("最终状态为:")
  139. printArray(endArray)
  140. while(father.Dn >=1):
  141. endList.append(father.array)
  142. father = father.Father
  143. endList.append(initObject.array)
  144. print("【变换成功,共需要" + str(deep) +"次变换】")
  145. for item in reversed(endList):
  146. printArray(item)
  147. sys.exit()
  148. else:
  149. countDn = countDn + 1
  150. # 找到选中的状态0下标
  151. zeroIndex = openList[0].array.index(0)
  152. # 获得该位置可select的operation
  153. operation = selectOperation(zeroIndex, openList[0].cameFrom)
  154. # print("0的下标", zeroIndex)
  155. # print("cameFrom的值", openList[0].cameFrom)
  156. # print("可进行的操作",operation)
  157. # # print("深度",openList[0].Dn)
  158. # print("选中的数组:")
  159. # printArray(openList[0].array)
  160. # 根据可选择的操作算出对应的序列
  161. tempStatusList = []
  162. for opeNum in operation:
  163. # 根据操作码返回改变后的数组
  164. copyArray = openList[0].array.copy()
  165. newArray = setArrayByOperation(zeroIndex, copyArray, opeNum)
  166. newStatusObj = statusObject() # 构造新对象插入open表
  167. newStatusObj.array = newArray
  168. newStatusObj.Dn = openList[0].Dn + 1 # 更新dn 再计算fn
  169. newFn = newStatusObj.Dn + countNotInPosition(newArray, endArray)
  170. # newFn = newStatusObj.Dn + countTotalLength(newArray, endArray)
  171. newStatusObj.Fn = newFn
  172. newStatusObj.cameFrom = opeNum
  173. newStatusObj.Father = openList[0]
  174. tempStatusList.append(newStatusObj)
  175. # 将操作后的tempStatusList按Fn的大小排序
  176. tempStatusList.sort(key=lambda t: t.Fn)
  177. # 更新closed表
  178. closedList.append(openList[0])
  179. # 更新open表
  180. del openList[0]
  181. for item in tempStatusList:
  182. openList.append(item)
  183. # 根据Fn将open表进行排序
  184. openList.sort(key=lambda t: t.Fn)
  185. # print("第"+str(countDn) +"次的结果:")
  186. # print("open表")
  187. # for item in openList:
  188. # print("Fn" + str(item.Fn))
  189. # print("操作" + str(item.cameFrom))
  190. # print("深度"+str(item.Dn))
  191. # printArray(item.array)
  192. # @SCY164759920
  193. # print("closed表")
  194. # for item2 in closedList:
  195. # print("Fn" + str(item2.Fn))
  196. # print("操作" + str(item2.cameFrom))
  197. # print("深度" + str(item2.Dn))
  198. # printArray(item2.array)
  199. # print("==================分割线======================")
  200. else:
  201. print("该种情况无解")

2022.10.28 13:32更新: 

        经测试后发现,源代码的输出在某些情况下会BUG,现已修改,修改了原数据结构,在每个节点中添加了“Father”属性,用以存放每个节点的父亲节点。修改后,经测试已经能正常输出,若读者是在更新时间之后阅读本文,直接可忽略。

更新:

         原程序的启发函数只提供了w(n)的方法,现更新p(n)的实现:

        【p(n)即:节点n的每个棋子与目标位置之间的距离总和】

修改方法:

        将源程序中两处计算Fn的函数进行替换 并添加两个计算函数

第一处

 【原】:initObject.Fn = countDn + countNotInPosition(initObject.array, endArray)

【替换】:initObject.Fn = countDn + countTotalLength(initObject.array, endArray)

第二处:

【原】:newFn = newStatusObj.Dn + countNotInPosition(newArray, endArray)

【替换】:newFn = newStatusObj.Dn + countTotalLength(newArray, endArray)

添加两个计算函数:

  1. def computedLengthtoEndArray(value, current, end): # 两元素的下标之差并去绝对值
  2. def getX(index): # 获取当前index在第几行
  3. if 0 <= index <= 2:
  4. return 0
  5. if 3 <= index <= 5:
  6. return 1
  7. if 6 <= index <= 8:
  8. return 2
  9. def getY(index): # 获取当前index在第几列
  10. if index % 3 == 0:
  11. return 0
  12. elif (index + 1) % 3 == 0:
  13. return 2
  14. else:
  15. return 1
  16. currentIndex = current.index(value) # 获取当前下标
  17. currentX = getX(currentIndex)
  18. currentY = getY(currentIndex)
  19. endIndex = end.index(value) # 获取终止下标
  20. endX = getX(endIndex)
  21. endY = getY(endIndex)
  22. length = abs(endX - currentX) + abs(endY - currentY)
  23. return length
  24. def countTotalLength(current, end):
  25. # 根据current和end计算current每个棋子与目标位置之间的距离和【除0】
  26. count = 0
  27. for item in current:
  28. if item != 0:
  29. count = count + computedLengthtoEndArray(item, current, end)
  30. return count

分别运行启发函数取w(n)p(n)发现,在本次选取的示例转换中:

        取p(n)时转换过程共需要5步

        取w(n)时转换过程共需要5步

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索
排行榜