搜索资源列表
-
0下载:
Using Genetic Algorithm to solve the 8 Queens problem.-Using Genetic Algorithm to solve the eight Quee ns problem.
-
-
0下载:
八皇后问题
【问题描述】 在一个8×8的国际象棋棋盘上放置8个皇后,要求每个皇后两两之间不“冲突”,即没有一个皇后能“吃掉”任何其他一个皇后,简单的说就是没有任何两个皇后占据棋盘上的同一行或同一列或同一对角线,即在每一横列、竖列、斜列都只有一个皇后。-Descr iption of the problem eight queens problem 【】 In an 8 × 8 chess board to place eight queens, requires that each
-
-
0下载:
八皇后游戏的说明:问题的提出:八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。
要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于
棋盘的同一行、同一列和同一条对角线上。试问有多少种放法?
基本思想是:先把皇后放在(0,0)位置,然后把1号皇后放在(1,j)位置,使其满足要求。接着放2号皇后,依此类推。遇到某个皇后如把她无论放在该行的任意
位置均不满足要求,则前一个皇后放置不当,须重新放置前一皇后,如8个皇后均按要
求放置好,这就是一次成
-
-
0下载:
Solution of the eight queens problem (Chess game)
-
-
0下载:
该问题是 19 世纪著名的数学家高斯 1850 年提出的。八皇后问题要求在一个8 × 8 的 棋盘上放上8个皇后,使得每一个皇后既攻击不到另外 7 个皇后,也不被另外 7 个皇后所攻击。 按照国际象棋的规则, 一个皇后可以攻击与之处在同一行或同一列或同一斜线上的其他任何棋子。 因此, 八皇后问题等于要求 8 个皇后中的任意两个不能被放在同一行或同一列或同一斜线上。 该代码为解决此问题的代码-The problem is that the famous 19th century mathemati
-
-
0下载:
问题的提出:八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。
要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于
棋盘的同一行、同一列和同一条对角线上。试问有多少种放法?-The problem: the eight queens is an old and interesting game, is first proposed by Gauss in 1850.
To place eight Queen on the chess board s
-
-
0下载:
这是一个关于国际象棋中八皇后问题的具体算法。这个代码能够输出所有可能的排列-This is one of the eight queens problem in chess algorithm. This code can output all the possible permutations
-
-
0下载:
VC++课程设计的八皇后问题
在一个8*8的棋盘上放置彼此不受攻击的8个皇后。
按照国际象棋的规则,皇后可以攻击与之处在同一行或同一列或同一斜线上的棋子。8皇后问题就等价于在8*8格的棋盘上放置8个皇后,任何两个皇后不放在同一行或同一列或同一斜线上。
-VC++ curriculum design the eight queens problem in an 8* 8 chessboard placed 8 Queen not to attack each other. In acc
-
-
0下载:
(This is Borland C++Builder version)
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so was originally proposed in 1848 by the chess player Max Bezzel,
and over the years, many mathematicians, including
-
-
0下载:
(This is Java version)
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so was originally proposed in 1848 by the chess player Max Bezzel,
and over the years, many mathematicians, including Gauss, have wo
-
-
0下载:
(This is Visual Basic 6 version)
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so was originally proposed in 1848 by the chess player Max Bezzel,
and over the years, many mathematicians, including Gaus
-
-
0下载:
(This is VS2008 version)
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so was originally proposed in 1848 by the chess player Max Bezzel,
and over the years, many mathematicians, including Gauss, have
-
-
0下载:
这是八皇后问题的C程序,非常完整的源代码,解决了很多难题。-This is a C program, complete source code of the eight queens problem, and solve many problems.
-
-
0下载:
八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight queens problem is an old and well-known problems, backtracking algorithm is a typical example. The problem is that the famous 19th
-
-
0下载:
八皇后问题是:在8*8的国际象棋棋盘上,安放8个皇后,要求没有一个皇后能够“吃掉”任何一个其他的皇后,即没有两个或两个以上的皇后占据棋盘上的同一行、同一列或同一条对角线。-Eight queens problem is: 8* 8 chess board, placed eight at Queen' s, a Queen' s request was not able to " eat" any of the other Queen' s, that is,
-
-
0下载:
解决八皇后问题:即在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Solve the eight queens problem: that is placed on a 8X8 grid chess eight Queen, so that it can not attack each other, that is, any two Queens are not in the same line, same column
-
-
0下载:
这是一个关于国际象棋中八皇后问题的具体算法。这个代码能够输出所有可能的排列-This is one of the eight queens problem in chess algorithm. This code can output all the possible permutations
-
-
0下载:
解决八皇后问题:即在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Solve the eight queens problem: that is placed on a 8X8 grid chess eight Queen, so that it can not attack each other, that is, any two Queens are not in the same line, same column
-
-
0下载:
这是一个关于国际象棋中八皇后问题的具体算法。这个代码能够输出所有可能的排列-This is one of the eight queens problem in chess algorithm. This code can output all the possible permutations
-
-
0下载:
Solution of the eight queens problem (Chess game)
-