CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - n queen problem
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - n queen problem - List
[
Documents
]
运用递归来解N皇后问题
DL : 0
运用递归来解N皇后问题-use recursive solution to the problem of N Queen
Update
: 2025-02-17
Size
: 1kb
Publisher
:
[
Windows Develop
]
算法分析与设计多媒体
DL : 0
在毕业设计期间由多人开发的一个算法演示系统,它包n皇后问题、拉维斯加算法等-This is a algorithm demo system developed by some persons, which including n queen problem, Laplac algorithm,etc.
Update
: 2025-02-17
Size
: 3.77mb
Publisher
:
吴义军
[
Windows Develop
]
N皇后问题
DL : 0
在一个N×N的国际象棋棋盘中摆N个皇后,使这N个皇后不能互相被对方吃掉。-Put on N queens in a N multiply N chessboard,preventing each queen to be knocked over
Update
: 2025-02-17
Size
: 22kb
Publisher
:
罗敏秀
[
AI-NN-PR
]
Queen
DL : 0
局部搜索法求解N皇后问题。这个算法的特点是引入随机因素,每次运行并不能保证求得问题的最优解,但经过运行之后,一般总能得到一个与最优解相差不大的满意解。-Local Search Method for Solving N Queens problem. The algorithm is characterized by the introduction of random factors, each running and can not guarantee to achieve the optimal solution of the problem, but after running, the general always be an optimal solution is no less than satisfactory solution.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
清和信平
[
Data structs
]
N-queen_linear_time
DL : 0
N-皇后问题线性时间算法 O(n)复杂度,非O(n^2)的,使用的是构造法。-N-Queen problem of linear time algorithm
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Fancy
[
Data structs
]
n-queen
DL : 0
n皇后问题,迷宫问题,递归实现皇后寻找迷宫出路,经典算法之一-n queen problem, the maze problem, the recursive realization of the maze to find a way out of Queen' s, one of the classic algorithm
Update
: 2025-02-17
Size
: 1kb
Publisher
:
luo
[
matlab
]
Queen
DL : 0
求解n皇后问题的MATLAB源程序。此程序只需输入皇后个数,即可得到所有的解。-N queens problem solving MATLAB source code. Just enter the number of this program at Queen' s, you can get all of the solution.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
qiyifei
[
Game Program
]
Nqueens
DL : 0
N queen problem in c++ coding
Update
: 2025-02-17
Size
: 8kb
Publisher
:
reka
[
OpenGL program
]
eightqueen
DL : 0
N后问题,利用OPENGL实现简单演示。-N queen problem. using opengl for simple display.
Update
: 2025-02-17
Size
: 10kb
Publisher
:
aite
[
AI-NN-PR
]
n-Queen-PRoblem
DL : 0
使用Hopfield人工神经网络解决"N-皇后"问题-A copy of source code about how to resolve N-Queen problem with Hopfield artificial neural network.
Update
: 2025-02-17
Size
: 21kb
Publisher
:
bailong
[
Data structs
]
N-queen-problem
DL : 0
n皇后问题 n皇后问题 n皇后问题-n queens n queens n queens n queens n queens problem
Update
: 2025-02-17
Size
: 26kb
Publisher
:
ilove
[
Data structs
]
N-Queen-problem
DL : 0
可以实现N皇后的问题 运用简易算法 大大降低了耗时-N-Queens problem can be achieved using simple algorithm greatly reduces the time-consuming
Update
: 2025-02-17
Size
: 154kb
Publisher
:
胡骏
[
Data structs
]
n-queen
DL : 0
解决N皇后问题,里面有不同方法的分析,还有上限,我记得是100个-Sovle the "n queen" problem
Update
: 2025-02-17
Size
: 4kb
Publisher
:
刘梓祥
[
JSP/Java
]
n-queen-problem-display
DL : 0
n后问题演示程序,算法分析与设计,递归算法-N queen problem demonstration program, the algorithm analysis and design, recursion algorithm
Update
: 2025-02-17
Size
: 4kb
Publisher
:
jade
[
Data structs
]
N-queen-problem
DL : 0
N皇后问题,解决N皇后问题,详细的C代码-N-Queens problem, solve the N queens problem, the details of the C code
Update
: 2025-02-17
Size
: 1kb
Publisher
:
天涯
[
JSP/Java
]
n-queen
DL : 0
解决n皇后问题 利用回溯算法 n后问题等于在n×n格的棋盘上放置n个皇后,任何2个皇后不放在同一行或同一列或同一斜线上。即规定每一列放一个皇后,不会造成列上的冲突;当第i行被某个皇后占领后,则同一行上的所有空格都不能再放皇后,要把以i为下标的标记置为被占领状态。用回溯法解n后问题,用完全n叉树表示解空间。可行性约束Place剪去不满足行,列和斜线约束的子树。从根节点出发搜索解空间树。算法搜索至空间树的任何一结点时,先判断该点是否包含问题的解。如果肯定不包含,则跳过对以该结点为根的子树的搜索,逐层向其祖先结点回溯;否则进入该子树,继续深度优先策略搜索。-with this solve n queen problem fasdfsd asdfdasfas f asdfasf asf
Update
: 2025-02-17
Size
: 1kb
Publisher
:
yuts
[
Mathimatics-Numerical algorithms
]
TabuSearch-for-N-Queen-Problem
DL : 0
Tabu Search解N皇后问题 禁忌搜索算法求解N皇后问题-Tabu Search solution of the N-Queens problem tabu search algorithm for solving the N-queens problem
Update
: 2025-02-17
Size
: 202kb
Publisher
:
lwl
[
CSharp
]
295---N-Queen-Problem-via-Hopfield-Tank-Neural-Ne
DL : 0
N-Queen Problem via Hopfield-Tank Neural Network v1.0
Update
: 2025-02-17
Size
: 26kb
Publisher
:
Nima
[
JSP/Java
]
N-Queen
DL : 0
N-Queen Problem Solution
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Faysal
[
Software Engineering
]
n-queen-problem
DL : 0
n queen problem source code in working
Update
: 2025-02-17
Size
: 20kb
Publisher
:
Ayesha
«
1
2
3
4
5
6
7
8
9
10
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.