CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - 8queen
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - 8queen - List
[
Other
]
8__queen
DL : 0
8queen问题的递归求解DOC图形显示,C:\\turboc2目录下。-8queen the recursive solution DOC graphics, C : \\ turboc2 directory.
Update
: 2008-10-13
Size
: 19.99kb
Publisher
:
强
[
ADO-ODBC
]
8Queen
DL : 0
八皇后问题的求解,VC++6.0编译通过,数据结构典型例题
Update
: 2008-10-13
Size
: 7.11kb
Publisher
:
RR
[
Other resource
]
8queen
DL : 0
在一个8×8国际象棋盘上,有8个皇后,每个皇后占一格;要求皇后间不会出现相互\"攻击\"的现象,即不能有两个皇后处在同一行、同一列或同一对角线上。问共有多少种不同的方法。 本算法采用一维数组来进行处理。数组的下标i表示棋盘上的第i列,a[i]的值表示皇后在第i列所放的位置。如:a[1]=5,表示在棋盘的第一例的第五行放一个皇后。
Update
: 2008-10-13
Size
: 1.39kb
Publisher
:
Fayer Michael
[
Other resource
]
8queen
DL : 0
vb平台下用回溯法求解n皇后问题,只输出一种结果
Update
: 2008-10-13
Size
: 2.37kb
Publisher
:
qj
[
Other resource
]
8queen
DL : 0
算法设计与分析中的8后问题,程序可实现8后问题算法逐步图形化显示。或者直接计算最后结果然后显示。
Update
: 2008-10-13
Size
: 54.43kb
Publisher
:
ling
[
Other resource
]
8Queen
DL : 1
八皇后游戏程序。设计一个8×8的棋盘,允许用户在棋盘的格子上放置8个皇后(国际象棋中的棋子)。要求每两个皇后不能处于同一条横线,竖线和45度或135度的斜线上(即按国际象棋的规则要求任意两个皇后不能处于直接可以互相攻击的状态)。如果用户放置的棋子不符合上面要求,则程序给出错误显示,并请设计某种比较直观的方式标出可以互相攻击的两个皇后,然后要求重新放置该棋子。当8个皇后全部放在棋盘上,且任意两个皇后不能互相攻击,则显示成功的信息和所用的时间。
Update
: 2008-10-13
Size
: 38.9kb
Publisher
:
leo
[
Other resource
]
8Queen
DL : 0
在8*8的国际象棋盘上放置八个皇后,使得这八个棋子;不能互相被对方吃掉。要求: 1、依次输出各种成功的放置方法 2、画出棋盘的图形形式,并在带上动态的演示试探过程 3、程序能方便的移植到其他规格的棋盘上
Update
: 2008-10-13
Size
: 49.65kb
Publisher
:
李浩
[
Windows Develop
]
8queen
DL : 0
经典数据结构问题 八皇后问题的验证代码c
Update
: 2008-10-13
Size
: 11.29kb
Publisher
:
nido
[
Chess Poker games
]
8queen
DL : 0
在一个8×8国际象棋盘上,有8个皇后,每个皇后占一格;要求皇后间不会出现相互"攻击"的现象,即不能有两个皇后处在同一行、同一列或同一对角线上。问共有多少种不同的方法。 本算法采用一维数组来进行处理。数组的下标i表示棋盘上的第i列,a[i]的值表示皇后在第i列所放的位置。如:a[1]=5,表示在棋盘的第一例的第五行放一个皇后。-8 × 8 in a chess set, there s eight, each accounting for a Queen s grid request will not be any mutual between Queen s attack phenomenon, that can not have two Queen s in the same line, the same row or the same diagonal. Asked the total number of different ways. This algorithm uses one-dimensional array to be processed. Array subscript i said i chessboard first out, a [i] value that s in the first place i listed by location. Such as: a [1] = 5, said the first cases in the chessboard of the fifth line of a Queen s release.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Fayer Michael
[
Data structs
]
8queen
DL : 0
vb平台下用回溯法求解n皇后问题,只输出一种结果-vb platform using retrospective method n Queen s problems, only a result of output
Update
: 2025-02-17
Size
: 2kb
Publisher
:
qj
[
Chess Poker games
]
8Queen
DL : 0
八皇后游戏程序。设计一个8×8的棋盘,允许用户在棋盘的格子上放置8个皇后(国际象棋中的棋子)。要求每两个皇后不能处于同一条横线,竖线和45度或135度的斜线上(即按国际象棋的规则要求任意两个皇后不能处于直接可以互相攻击的状态)。如果用户放置的棋子不符合上面要求,则程序给出错误显示,并请设计某种比较直观的方式标出可以互相攻击的两个皇后,然后要求重新放置该棋子。当8个皇后全部放在棋盘上,且任意两个皇后不能互相攻击,则显示成功的信息和所用的时间。
Update
: 2025-02-17
Size
: 444kb
Publisher
:
leo
[
Mathimatics-Numerical algorithms
]
8queen
DL : 0
随机生成八皇后棋盘,利用爬山法选择较优方案-Randomly generated eight Queen s chessboard, using mountain climbing method to choose better programs
Update
: 2025-02-17
Size
: 180kb
Publisher
:
ls112112
[
Mathimatics-Numerical algorithms
]
8Queen
DL : 0
用DEV C++ 写的实现查找所有八皇后可能的算法。没有用递归,全部是用for循环实现,代码很晦涩,我自己现在都看不明白了。-With DEV C++ to write the achievement of all eight of Queen' s search algorithm may be. Did not use recursion, all is for the cycle to achieve, the code is very obscure, I can not now understand.
Update
: 2025-02-17
Size
: 109kb
Publisher
:
xiamin
[
Windows Develop
]
8queen
DL : 0
This is a simple solution of 8queen puzzle problem. It finds all the possible solution of 8queen problem. -This is a simple solution of 8queen puzzle problem. It finds all the possible solution of 8queen problem.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Binoy
[
Data structs
]
8QUEEN
DL : 0
Program in C++ for 8QUEEN Problem
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Ravi
[
Windows Develop
]
8Queen
DL : 0
8queen problem .-8queen problem .
Update
: 2025-02-17
Size
: 16kb
Publisher
:
ss
[
Other
]
8Queen
DL : 0
用递归解决八皇后问题。3种做法。面向对象和面向过程。-8queen problem solved in recursive algorithm。
Update
: 2025-02-17
Size
: 3kb
Publisher
:
yang
[
Delphi VCL
]
8Queen
DL : 0
8queen for by delphi
Update
: 2025-02-17
Size
: 336kb
Publisher
:
iman
[
Other
]
8Queen
DL : 0
8Queen solved with Simulated annealing algorithm
Update
: 2025-02-17
Size
: 12kb
Publisher
:
qwe
[
Other
]
8queen
DL : 0
a classical algorithm of 8queen
Update
: 2025-02-17
Size
: 6kb
Publisher
:
chenweicong
«
1
2
3
4
5
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.