CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - queen

搜索资源列表

  1. Queen

    0下载:
  2. N皇后的C#实现,可以自定义输入皇后数,并智能显示出皇后的N中方案。-N-Queens of the C# implementation, you can customize the number of input Queen, and the N-smart show in Queen s program.
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2082664
    • 提供者:xiam
  1. 8-Queen

    0下载:
  2. 这是一个关于8皇后的源代码,是用C语言开发,会输出92中结果。-This is a 8 Queen' s source code is written in C language development, will result in the output 92.
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2866373
    • 提供者:
  1. eight-queen

    0下载:
  2. 八皇后问题19世纪著名的数学家高斯于1850年提出的。他的问题是:在8*8的棋盘上放置8个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列、同一斜线上。请设计算法打印所有可能的摆放方法。-8 queens problems in the 19 th century famous mathematician gauss put forward in 1850. His problem is: in 8* 8 board placed eight queen, to make it c
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:882412
    • 提供者:fairy
  1. eight-queen

    0下载:
  2. 八皇后问题及n皇后问题求解,数据结构的经典算法,及课程设计的需要-eight queen problem .data sructment problem
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:130565
    • 提供者:张頔
  1. N-queen-problem

    0下载:
  2. 在N*N的方格棋盘放置了N个皇后,使得它们不相互攻击(即任意2个皇后不允许处在同一排,同一列,也不允许处在与棋盘边框成45角的斜线上。 你的任务是,对于给定的N,求出有多少种合法的放置方法。 -In N* N checkerboard of placed N a queen, so they don t attack each other (that is, any two queen not allowed in the same row, the same listed, and n
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-03-21
    • 文件大小:1083
    • 提供者:ren_xi
  1. queen

    1下载:
  2. 用MFC实现八皇后问题,可多皇后,比如四皇后、十六皇后等,可通过输入参数实现-Using MFC to solve eight queens problem, and more Queen, for example four Queens, sixteen Queen, etc., can be achieved through the input parameters
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:228396
    • 提供者:萱萱
  1. n-queen

    0下载:
  2. 解决N皇后问题,里面有不同方法的分析,还有上限,我记得是100个-Sovle the "n queen" problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:4500
    • 提供者:刘梓祥
  1. QUEEN

    0下载:
  2. code for 8-queen with c++ language
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:825
    • 提供者:houri
  1. n-queen-problem-display

    0下载:
  2. n后问题演示程序,算法分析与设计,递归算法-N queen problem demonstration program, the algorithm analysis and design, recursion algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:4223
    • 提供者:jade
  1. Queen

    0下载:
  2. 回溯算法解决皇后问题 回溯算法解决皇后问题-the solution of n queen
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:639
    • 提供者:wang
  1. n-Queen

    0下载:
  2. 用c++实现n皇后的算法源码,注释比较详细,用回溯算法实现的-N queen algorithm source code with c++, a more detailed annotation, backtracking algorithm to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:953
    • 提供者:waynechan
  1. queen

    0下载:
  2. 基于MPI的8皇后问题源代码.需要MPI支持-8-queen problem, with MPI
  3. 所属分类:MPI

    • 发布日期:2017-04-01
    • 文件大小:2915
    • 提供者:andy
  1. 8-Queen

    0下载:
  2. 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
  3. 所属分类:Other Games

    • 发布日期:2017-03-30
    • 文件大小:322600
    • 提供者:胡凯
  1. n-queen

    0下载:
  2. 解决n皇后问题 利用回溯算法 n后问题等于在n×n格的棋盘上放置n个皇后,任何2个皇后不放在同一行或同一列或同一斜线上。即规定每一列放一个皇后,不会造成列上的冲突;当第i行被某个皇后占领后,则同一行上的所有空格都不能再放皇后,要把以i为下标的标记置为被占领状态。用回溯法解n后问题,用完全n叉树表示解空间。可行性约束Place剪去不满足行,列和斜线约束的子树。从根节点出发搜索解空间树。算法搜索至空间树的任何一结点时,先判断该点是否包含问题的解。如果肯定不包含,则跳过对以该结点为根的子树的搜索,
  3. 所属分类:Java Develop

    • 发布日期:2017-03-26
    • 文件大小:869
    • 提供者:yuts
  1. N-queen

    0下载:
  2. 求解n皇后问题。给定一个N×N的棋盘,在棋盘上放置N个皇后,使得N个皇后两两之间互不攻击。任何两个处于同一列,同一行,同一对角线上的皇后都会互相攻击。 -Solve the n queens problem. To set a NN board, place N queens on a chessboard, making the N-queens do not attack each other between every two. Any two in the same column,
  3. 所属分类:Console

    • 发布日期:2017-03-28
    • 文件大小:1018
    • 提供者:liao
  1. Erlang-N-queen

    0下载:
  2. 基于Erlang语言平台解决N皇后问题,通过对原有基于Erlang的N皇后问题算法进行分析,提出了一种新的改进算法。该算法利用位运算操作,并且在每一行只搜索可以放置皇后的位置。通过理论分析与实验验证,证明该算法能明显提升N皇后问题算法效率。-Solve the N-queens problem, based on the Erlang language platform through the original N-queens problem algorithm based on Erlang
  3. 所属分类:Other systems

    • 发布日期:2017-11-04
    • 文件大小:233645
    • 提供者:陈嘉鑫
  1. 8-queen

    0下载:
  2. It is a graphical representation of the famous 8 queen problem . the program is in accordance to the algorithm described in Cormen.
  3. 所属分类:Algorithm

    • 发布日期:2017-11-25
    • 文件大小:45950
    • 提供者:amannith
  1. queen

    0下载:
  2.   用枚举法解八皇后问题, 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Use enumeration method solution eight queen, in 8 x8 lattice chess put on eight queen, to make it can t attack each other, i.e., any two queen cannot in the same column with
  3. 所属分类:EditBox

    • 发布日期:2017-11-03
    • 文件大小:7047
    • 提供者:尼麻痹
  1. eight-queen-problem

    0下载:
  2. 以一个很巧妙的递归算法实现8皇后问题,该递归算法思路很独特,是初学者一个很好的借鉴-To a very clever recursive algorithm resolve eight queen problem .
  3. 所属分类:CSharp

    • 发布日期:2017-11-07
    • 文件大小:706
    • 提供者:庄希
  1. queen

    0下载:
  2. 解决皇后问题,更轻松地解决皇后问题,这是我的荣幸-solve the queen question,and to solve the queen question relaxly,its my plesure
  3. 所属分类:File Formats

    • 发布日期:2017-11-27
    • 文件大小:888
    • 提供者:谢文舟
« 1 2 3 4 5 67 8 9 10 11 ... 50 »
搜珍网 www.dssz.com