搜索资源列表
-
0下载:
对人工智能八皇后问题求解,掌握爬山法的应用-Eight Queens problem-solving of artificial intelligence to grasp the application of hill-climbing
-
-
0下载:
利用回溯法和栈来实现八皇后问题:在n×n的国际象棋棋盘上,安放n个皇后,要求没有一个皇后能够“吃掉”任何其他一个皇后,即没有两个或两个以上的皇后占据棋盘上的同一行、同一列或同一对角线-Use of backtracking and stack to achieve the eight queens problem: the n × n chess board, place n queens, a queen is not required to " eat" any other
-
-
0下载:
八皇后问题的LasVegas与回溯法的混合算法实现,其中代码和文档详细-The eight queens problem LasVegas backtracking hybrid algorithm in detail, including code and documentation
-
-
0下载:
八皇后问题,用vc编写了一个可以解决八皇后问题的程序,实现了递归调用。-The eight queens problem, using vc write a means of solving the eight queens problem program to achieve the recursive calls.
-
-
0下载:
八皇后问题的具体实现,用递归来寻找每个皇后的位置,有注释!-Concrete realization of the eight queens problem, using recursion to find the location of each of the Queen, there are comments!
-
-
0下载:
用C语言实现把八皇后问题解决了,应该值得一看。-With the C language implementation to solve the eight queens problem, it should be worth a visit.
-
-
0下载:
回溯法解决八皇后问题,使四个皇后不在同一行,不在同一列,且不在同一对角线上-Backtracking to solve the eight queens problem,Make four Queen s not in the same row, not in the same column, and not in the same diagonal
-
-
0下载:
八皇后问题的高效解法-递归版An efficient method for the eight queens problem - recursive version
-An efficient method for the eight queens problem- recursive version
-
-
0下载:
八皇后问题所有解的Java程序代码,能得到92种全部解。-Java source code of the "Eight queens problem". It can work out all 92 solutions.
-
-
0下载:
八皇后问题,是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。 高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。计算机发明后,有多种方法可以解决此问题。
可以通过更改程序中define 的n 的值将其改为任意个数的皇后问题
-Eight queens pr
-
-
0下载:
用遗传算法完美解决八皇后问题! 有详细的注释-Using genetic algorithms to solve the eight queens problem perfectly! Detailed notes
-
-
0下载:
八皇后问题,是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。 高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。计算机发明后,有多种方法可以解决此问题。
-Eight queens problem is an ancient and well-known pr
-
-
0下载:
分治法求解八皇后问题,一个简单的分治法应用算法。-Divide and conquer method to solve the eight queens problem, a simple application of divide and conquer algorithm.
-
-
0下载:
解决C++中的一个难题:八皇后问题,代码有一定的参考性。-Solution in C++ a problem: the eight queens problem, the code has some reference.
-
-
0下载:
八皇后问题,是一个古老而著名的问题,是回溯算法的典型例题。该文件为八皇后问题的算法源代码。-The eight queens problem, is the the the the the problem of an ancient while the the famous, yes the backtracking algorithm of the of Typical Exercises of. The files for the eight queens problem algorithm
-
-
0下载:
八皇后问题:设8皇后问题的解为 (x1, x2, x3, …,x8), 约束条件为:在8x8的棋盘上,其中任意两个xi 和xj不能位于棋盘的同行、同列及同对角线。要求用一位数组进行存储,输出所有可能的排列。-Eight queens problem: Let the eight queens problem, the solution (x1, x2, x3, ..., x8), constraint conditions: on a 8x8 board, in which any two xi
-
-
0下载:
八皇后问题:设8皇后问题的解为 (x1, x2, x3, …,x8), 约束条件为:在8x8的棋盘上,其中任意两个xi 和xj不能位于棋盘的同行、同列及同对角线。要求用一位数组进行存储,输出所有可能的排列。-Eight queens problem: Let the eight queens problem, the solution (x1, x2, x3, ..., x8), constraint conditions: on a 8x8 board, in which any two xi
-
-
0下载:
数据结构,《八皇后问题》(基于c语言)-Data structure, the eight queens problem " (c language)
-
-
0下载:
八皇后问题的解决方案.图形列出了种类,并计算解决方案总个数-Solution to the eight queens problem
-
-
0下载:
八皇后问题是一个古老而著名的问题,是回溯算法的经典问题。该问题是十九世纪著名的数学家高斯在1850年提出的:在8*8的国际象棋棋盘上,安放8个皇后,要求没有一个皇后能够“吃掉”任何其它一个皇后,即任意两个皇后不能处于同一行,同一列或者同一条对角线上,求解有多少种摆法。
高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法得到结论,有92中摆法。
本实验拓展了N皇后问题,即皇后个数由用户输入。
-Eight queens problem
-