搜索资源列表

  1. Queens

    0下载:
  2. Program solve Eight queens puzzle
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-18
    • 文件大小:3072
    • 提供者:Eugene
  1. eight-queens

    0下载:
  2. 八皇后问题的解决方案.图形列出了种类,并计算解决方案总个数-Solution to the eight queens problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:530432
    • 提供者:wangjinchao
  1. 8-queens

    0下载:
  2. 8皇后问题   在一个8×8的棋盘里放置8个皇后,要求这8个皇后两两之间互相都不“冲突”。-eight queens
  3. 所属分类:汇编语言

    • 发布日期:2024-05-18
    • 文件大小:5120
    • 提供者:张莹
  1. Queens

    0下载:
  2. 八皇后,回溯法,JAVA实现,1维数组,可列出所有可行解-Eight Queens, backtracking, JAVA implementation, one-dimensional arrays, lists all feasible solutions
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:rooode
  1. Eight-queens-problem-

    0下载:
  2. Matlab写的求解八皇后问题的程序,可以求出全部的92个解-Eight queens problem solving backtracking
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:李惠军
  1. eight-queens-problem

    0下载:
  2. 解决八皇后问题:即在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
  3. 所属分类:游戏

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:ggedin
  1. eight-queens-problem

    0下载:
  2. 解决八皇后问题:即在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
  3. 所属分类:游戏

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:hinthe
  1. eight-queens

    0下载:
  2. 八皇后游戏,c++代码编写,八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。 要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于 棋盘的同一行、同一列和同一条对角线上。试问有多少种放法? 基本思想是:先把皇后放在(0,0)位置,然后把1号皇后放在(1,j)位置, 使其满足要求。接着放2号皇后,依此类推。遇到某个皇后如把她无论放在该行的任意 位置均不满足要求,则前一个皇后放置不当
  3. 所属分类:其他智力游戏

    • 发布日期:2024-05-18
    • 文件大小:6144
    • 提供者:ck lv
  1. N-queens-problem

    0下载:
  2. 八皇后问题是一个古老而著名的问题,是回溯算法的经典问题。该问题是十九世纪著名的数学家高斯在1850年提出的:在8*8的国际象棋棋盘上,安放8个皇后,要求没有一个皇后能够“吃掉”任何其它一个皇后,即任意两个皇后不能处于同一行,同一列或者同一条对角线上,求解有多少种摆法。 高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法得到结论,有92中摆法。 本实验拓展了N皇后问题,即皇后个数
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:林斌
  1. the-problem-of-8-queens

    0下载:
  2. 数据结构实现八(n)皇后问题,c源码+自定义头文件。有注释-the problem of 8 queens,language:C,has comments.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:2048
    • 提供者:
  1. eight-queens

    0下载:
  2. 使用c语言编写程序解决八皇后这个经典问题,也可以说是骑士巡游问题-Use c language program to solve the eight queens problem。
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:shirley
  1. eight-queens

    0下载:
  2. 八皇后问题,包括BFS,DFS和回溯法运算。也可以解决n皇后问题。- Eight queens problem, including BFS, DFS and backtracking operations. N queens problem can be solved.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:235520
    • 提供者:秦川
  1. eight-queens

    0下载:
  2. 八皇后问题,是一个古老而著名的问题,是回溯算法的典型案例。该问题是国际西洋棋棋手马克斯·贝瑟尔于1848年提出:在8×8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight queens problem is an old and well-known problem is backtracking algorithms typical case. The pro
  3. 所属分类:C#编程

    • 发布日期:2024-05-18
    • 文件大小:3072
    • 提供者:ANDY
  1. N-queens-problem

    0下载:
  2. N皇后问题,可以输入N的值,并输出每一种N的情况和步骤。-N queens problem, you can enter the value of N, and N outputs each situation and steps.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:98304
    • 提供者:李元月
  1. N-Queens

    0下载:
  2. 优化的N皇后算法,输入皇后的个数N,输出三个解,算法的时间复杂度为O(nlgn)-Optimized N queens algorithm, enter the number of the Queen N, output three solutions, the time complexity of the algorithm is O (nlgn)
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-18
    • 文件大小:10240
    • 提供者:jbzh
  1. N-Queens

    0下载:
  2. 使用回溯法求N皇后问题,是又经典的8皇后问题延伸而来-Seeking N Queens backtracking law, it is another classic 8-queens problem extends from
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:李泽文
  1. N-queens-algorithm

    0下载:
  2. n皇后问题的BFS算法,算法简洁,作为初学者一看就懂,不过先看会BFS算法很重要,这比普通的动态规划速度要快很多-N queens problem BFS algorithm, the algorithm is simple, as a beginner to understand, but first look at the BFS algorithm is very important, which is much faster t
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-18
    • 文件大小:12288
    • 提供者:黑所
  1. 8-Queens-Problem-Solver

    0下载:
  2. This program calculates and displays all possible solutions of the eight queens problem .-This program calculates and displays all possible solutions of the eight queens problem .
  3. 所属分类:其他小程序

    • 发布日期:2024-05-18
    • 文件大小:25600
    • 提供者:trexios
  1. Eight-Queens

    0下载:
  2. 八皇后问题,是数据结构课程中的重要问题,运用了递归、回溯等方法-Eight Queens problem
  3. 所属分类:软件工程

    • 发布日期:2024-05-18
    • 文件大小:1024
    • 提供者:fang
  1. EIGHT-QUEENS

    0下载:
  2. 实现八皇后问题 本程序实现了所有的八皇后解 并给出了解的数目 -Eight- queens Problem
  3. 所属分类:Windows编程

    • 发布日期:2024-05-18
    • 文件大小:2606080
    • 提供者:曲卓涵
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »

源码中国 www.ymcn.org