搜索资源列表
20080715_PhyToyV1_0
- 一款2D物理模拟软件,仿制了真实环境物体的各种连接与碰撞效果 应用介绍: 少年智力开发,学校物理课程指导,各种机构运动的研究 ,基于冲量的刚体铰链与碰撞,销限制铰接计算出链、摆、小车等模型,通过与扭簧配合模拟出玩具木马模型 仿真真实世界物理状态,建立了可用户控制的功能,达成了如同儿童玩具房的环境 -A 2D physics simulation software, imitation of the real environment of a variety of obje
danbaib
- 用Labview制作的一个单摆程序,界面简单-Produced by a pendulum with the Labview program interface, a simple
8_Queens_Game
- 八皇后游戏的说明:问题的提出:八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。 要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于 棋盘的同一行、同一列和同一条对角线上。试问有多少种放法? 基本思想是:先把皇后放在(0,0)位置,然后把1号皇后放在(1,j)位置,使其满足要求。接着放2号皇后,依此类推。遇到某个皇后如把她无论放在该行的任意 位置均不满足要求,则前一个皇后放置不当,须重新放置前一皇后,如8个皇后均按要 求放置好,这就是一次成
queue
- 皇后问题 在n×n格的国际象棋上摆放n个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-N × n queen problem in grid placing n chess queens on, so that it can not attack each other, that any two Queens can not in the same row, same column or on the same diagonal, asked
QueenN
- 国际象棋棋盘中的N皇后问题,不少朋友请知道吧?在一个NXN的国际象棋棋盘中摆n个皇后,使这N个皇后不能互相被对方吃掉,你知道应该怎么做么?怎么个摆法?要想知道答案,就解读一下本代码吧。-Chess board in the N queens problem, many friends you know? In a NXN chess board in the place n queens, so that the N queens can not eat each other by the ot
bahuanghou
- 经典的八皇后棋盘摆法,是用java语言实现的,对你学Java很有帮助,代码完全可以运行,不用担心。-Queen' s board of eight classic pendulum method is the use of java language, and helpful for you to learn Java code can run, do not worry.
a
- 用于检索游戏“俄罗斯方块”中,前8块块效率可以达到1.125的所有摆法。 块效率计算公式为 块效率= 总攻击行数/(总块数/3) 注:一次消3行或者4行为攻击行数-Used to retrieve game " Tetris" in the first eight horizontal efficiency can reach 1.125 of the pendulum method. Block efficiency is calculated as the bl
eight-queen-problem
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯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
eight-queens-problem
- 解决八皇后问题:即在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
eight-queens-problem
- 解决八皇后问题:即在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
N huanghou
- 国际象棋中皇后可以在横、竖、斜线上不限步数地吃掉其他棋子。如何将N个皇后放在一个国际象棋的棋盘上(有8 * 8个方格),使它们谁也不能被吃掉!这就是著名的八皇后问题。我们现在扩展一下,对于某个满足要求的N皇后的摆放方法,定义一个皇后序列与之对应,即{(x1,y1),(x2,y2)…(xN,yN)},其中(xi∈[1,N],yi∈[1,N],N∈[4,16]),其中(xi,yi)为相应摆法中第i个皇后所处的坐标(行数和列数)。那么需要针对这个序列进行检测,检测序列给定的皇后们是否存在可以相互吃掉的