7.14. 骑士巡游分析¶
7.14. Knight’s Tour Analysis
关于骑士巡游问题还有一个最后有趣的话题,然后我们将进入深度优先搜索的一般版本。这个话题是性能。特别是,knight_tour
对选择下一个要访问的顶点的方法非常敏感。例如,在一个 图12
可以帮助我们可视化为什么会这样。树的根表示搜索的起点。从那里,算法生成并检查骑士可以做出的每一个可能的移动。正如我们之前所提到的,可能的移动数量取决于骑士在棋盘上的位置。在角落处只有两个合法移动,在靠近角落的方格上有三个,在棋盘的中央有八个。图13
显示了每个位置的可能移动数量。在树的下一个层级,从我们当前探索的位置再次有两个到八个可能的下一个移动。可能要检查的位置数量对应于搜索树中的节点数量。


我们已经看到,二叉树的节点数量是
幸运的是,有一种方法可以加速 Listing 4
中,我们展示了加速 knight_tour
的代码。这个函数叫做 order_by_avail
,将代替 Listing 3
中第8行的 u.get_neighbors
调用。order_by_avail
函数中的关键行是第10行。这一行确保我们选择下一个移动中可用的移动最少的顶点。你可能会觉得这样做真的不合逻辑;为什么不选择可用移动最多的节点呢?你可以通过自己运行程序并在排序后插入 res_list.reverse()
行来尝试这种方法。
使用可用移动最多的顶点作为路径上的下一个顶点的问题在于,它倾向于使骑士在巡游的早期访问棋盘的中心方格。当这种情况发生时,骑士很容易被困在棋盘的一侧,无法到达棋盘另一侧未访问的方格。另一方面,首先访问可用移动最少的方格将推动骑士首先访问棋盘边缘的方格。这可以确保骑士在早期访问难以到达的角落,并且只有在必要时才使用中间方格跨越棋盘。
利用这种知识来加速算法被称为 启发式。人们每天都使用启发式方法来帮助决策,而启发式搜索常用于人工智能领域。这种特定的启发式方法叫做 Warnsdorff 算法,以 H. C. von Warnsdorff 的名字命名,他在1823年发表了这个想法。
Listing 4 | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 |
|
There is one last interesting topic regarding the knight’s tour problem, then we will move on to the general version of the depth-first search. The topic is performance. In particular, knight_tour
is very sensitive to the method you use to select the next vertex to visit. For example, on a Figure 12
can help us visualize why this is so. The root of the tree represents the starting point of the search. From there the algorithm generates and checks each of the possible moves the knight can make. As we have noted before, the number of moves possible depends on the position of the knight on the board. In the corners there are only two legal moves, on the squares adjacent to the corners there are three, and in the middle of the board there are eight. Figure 13
shows the number of moves possible for each position on a board. At the next level of the tree there are once again between two and eight possible next moves from the position we are currently exploring. The number of possible positions to examine corresponds to the number of nodes in the search tree.


We have already seen that the number of nodes in a binary tree of height
Luckily there is a way to speed up the Listing 4
we show the code that speeds up the knight_tour
. This function, called order_by_avail
, will be used in place of the call to u.get_neighbors
at line 8 in Listing 3
. The critical line in the order_by_avail
function is line 10. This line ensures that we select the vertex that has the fewest available moves to go next. You might think this is really counterproductive; why not select the node that has the most available moves? You can try that approach easily by running the program yourself and inserting the line res_list.reverse()
right after the sort.
The problem with using the vertex with the most available moves as your next vertex on the path is that it tends to have the knight visit the middle squares early on in the tour. When this happens it is easy for the knight to get stranded on one side of the board where it cannot reach unvisited squares on the other side of the board. On the other hand, visiting the squares with the fewest available moves first pushes the knight to visit the squares around the edges of the board first. This ensures that the knight will visit the hard-to-reach corners early and can use the middle squares to hop across the board only when necessary.
Utilizing this kind of knowledge to speed up an algorithm is called a heuristic. Humans use heuristics every day to help make decisions, and heuristic searches are often used in the field of artificial intelligence. This particular heuristic is called Warnsdorff’s algorithm, named after H. C. von Warnsdorff who published his idea in 1823.
Listing 4 | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 |
|
创建日期: 2024年9月9日