CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 搜索资源 - 皇后问题

搜索资源列表

  1. Queen

    0下载:
  2. 这是一个关于八皇后问题用回溯法求解的java解法!-This is the one on the eight queens problem using backtracking method for solving the java solution!
  3. 所属分类:Java Develop

    • 发布日期:2017-04-04
    • 文件大小:702
    • 提供者:窗外寒星
  1. nqueensquestion

    0下载:
  2. 可以对n皇后问题进行全面的实现,求出n皇后有多少种解法-N queens problem can be to achieve a comprehensive, calculate how many kinds of solution n Queen
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:2864
    • 提供者:yunfei
  1. Queen

    0下载:
  2. JAVA实现,动态规划算法解N皇后问题。
  3. 所属分类:Java Develop

    • 发布日期:2017-04-09
    • 文件大小:5492
    • 提供者:李开
  1. Queen_Fasttest

    0下载:
  2. 8皇后问题,采用递归回溯算法,结构完美,迄今运算最快的-8queen program mit rekusiv method
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:1012
    • 提供者:kao
  1. nqueen

    0下载:
  2. 著名的N皇后问题的两种解法: 在棋盘上放置N个皇后,使之不能互相攻击,输出可能的方法数。 JAVA实现。-2 kind of solutions of nqueen.
  3. 所属分类:Java Develop

    • 发布日期:2017-03-27
    • 文件大小:5219
    • 提供者:龙腾
  1. Hopfield

    0下载:
  2. 基于Hopfield网络的八皇后问题,附带原版论文和实验报告-Hopfield network based on the eight queens problem, with original papers and lab reports
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:276812
    • 提供者:yefei
  1. Eight_Queen

    0下载:
  2. 八皇后问题 包括棋盘大小改变等功能全实现-Eight queens problem, including changing the size of features such as full-board implementation
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:38134
    • 提供者:zhaotong
  1. eight_queen

    0下载:
  2. 八皇后问题 eclipse下使用 输出数目并打印 有注解-Eight queens problem using eclipse the number of output and print a comment
  3. 所属分类:Applet

    • 发布日期:2017-04-05
    • 文件大小:2863
    • 提供者:
  1. Queen

    0下载:
  2. 八皇后 进一步加深编程,进一步难度为N皇后问题-Eight Queens program to further deepen and further difficulty for the N queens problem
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:673
    • 提供者:lijianfeng
  1. queen

    0下载:
  2. java 皇后问题 回溯法实现 带图形界面实现-java queens backtracking with a graphical interface implementation to achieve
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:3685
    • 提供者:zhang
  1. EightQueens

    0下载:
  2. 八皇后问题的一个简单实现,带图形化界面的,用swing写的-Eight queens problem, a simple implementation, with graphical interface, written with the swing
  3. 所属分类:Java Develop

    • 发布日期:2017-04-17
    • 文件大小:9074
    • 提供者:liu
  1. NQueen

    0下载:
  2. n-皇后问题的迭代回溯解法,里面是完整的程序。可以运行。本人亲写。-n-queens problem iterative back solution, which is a complete program. Can run. I am pro-write.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:1156
    • 提供者:孙松山
  1. queen

    0下载:
  2. 解决经典八皇后问题,利用了回溯法进行计算。文件中包含一个.class文件-Solve the classic 8 queens problems
  3. 所属分类:Java Develop

    • 发布日期:2017-04-08
    • 文件大小:3903
    • 提供者:周发洋
  1. 8queens

    0下载:
  2. 8皇后问题求解 回溯递归求解,共有92组解-8queens recursive backtrack algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:2749
    • 提供者:wangyan
  1. A-few-basic-algorithms

    0下载:
  2. 几个基本算法,包括背包问题、皇后问题、集装箱装载、最大值最小值-A few basic algorithms, including the knapsack problem, the Queen, container loading, the maximum value of the minimum
  3. 所属分类:Java Develop

    • 发布日期:2017-03-30
    • 文件大小:3575
    • 提供者:杨杰
  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. 6.20

    0下载:
  2. 八皇后问题:任何两个皇后都不能互相攻击(即没有两个皇后是在同一行、同一列、同一对角线上)。-Eight queens problem: no two queens can attack each other (ie, no two queens in the same row, the same column on the same diagonal).
  3. 所属分类:Applet

    • 发布日期:2017-11-30
    • 文件大小:3721
    • 提供者:kevin
  1. NQueens

    0下载:
  2. 用回溯法求解N皇后问题,大家可以参考借鉴一下-With backtracking to solve N Queens problem, we can refer to learn about
  3. 所属分类:Java Develop

    • 发布日期:2017-12-04
    • 文件大小:647
    • 提供者:我高兴
  1. NQueens

    0下载:
  2. 算法系列-N皇后问题的解决,用java语言来编写-Algorithms Series-N queens problem solve, to write java language
  3. 所属分类:Java Develop

    • 发布日期:2017-12-02
    • 文件大小:1243
    • 提供者:wujianghao
  1. NqueensProblem

    0下载:
  2. 软件架构实例:使用分别使用管道-过滤器风格、调用/返回风格、回溯法和黑板风格四种架构风格实现N皇后问题;-Software architecture instance: use use the pipeline- filter style, call/return style N queens problem, backtracking and blackboard style four architectural styles
  3. 所属分类:Java Develop

    • 发布日期:2017-11-13
    • 文件大小:39918
    • 提供者:陈奕男
« 1 2 34 5 »
搜珍网 www.dssz.com