搜索资源列表
VisualQueen
- n皇后问题求解(8<=n<=1000) a) 皇后个数的设定 在指定文本框内输入皇后个数即可,注意: 皇后个数在8和1000 之间(包括8和1000) b) 求解 点击<Solve>按钮即可进行求解. c) 求解过程显示 在标有Total Collision的静态文本框中将输出当前棋盘上的皇后总冲突数. 当冲突数降到0时,求解完毕. d) 求解结果显示 程序可以图形化显示8<=n<=50的皇后求解结果. e) 退出
Queen
- 经典的8皇后java源代码 可以稍作改变成为迭代式-8 Queen
EightQueens
- 利用C#语言实现的八皇后问题。只有8*8的棋盘形式,可以输入皇后摆放的位置-This program is used by c#,which called eight-queen .It can show every situation about the able place to put the queen.But there is a disadvantage that it is set only 8*8 chess .
eight-queen
- 著名的八皇后问题,是回溯算法的典型例题。该问题是19世纪著名的数学家高斯1850年提出:在8*8格的国际象棋上摆放8个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-The famous Eight Queens problem, backtracking algorithm is a typical example. The problem is the famous 19th century mathematician Gauss 1850: U
EightQueenQuestion
- 经典的8皇后数学问题的C语言实现。经测试可运行。运行环境TurboC2.0.-Eight Queen Question realization by C program.TurboC2.0.
eightqueen
- 经典问题 8皇后,使用深度优先搜索算法。-8 Queen classic problem, using a depth-first search algorithm.
primer
- 一个小的代码:// stack堆栈中保留两个数据(皇后所在的行和列),总共有八个皇后 // 住要特别注意入栈和出栈的顺序。 最后输出计算的结果。-The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no
N-Queens
- 使用回溯法求N皇后问题,是又经典的8皇后问题延伸而来-Seeking N Queens backtracking law, it is another classic 8-queens problem extends from
回溯算法解决8皇后问题
- 利用回溯算法计算8皇后问题,计算出最终方案(A backtracking algorithm is used to calculate the 8 Queens, and the final scheme is calculated.)