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

搜索资源列表

  1. bahuanghou

    0下载:
  2. 八皇后的源程序代码-8 Queen of the source code
  3. 所属分类:Web服务器

    • 发布日期:2008-10-13
    • 文件大小:973byte
    • 提供者:刘炜
  1. bahuanghou

    0下载:
  2. 该问题主要用于解决八皇后问题。会下国际象棋的人都很清楚:皇后可以在横、竖、斜线上不限步数地吃掉其他棋子。如何将8个皇后放在棋盘上(有8*8个方格),使它们谁也不能被吃掉!这就是著名的八皇后问题。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3.78kb
    • 提供者:李利
  1. bahuanghou

    0下载:
  2. 这是一个八皇后问题,是用C++做的,在编程问题里面还是相当经典的一个
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:36.13kb
    • 提供者:黄荣
  1. bahuanghou

    0下载:
  2. 数据结构常用算法,用vc++实现的八皇后问题
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.18kb
    • 提供者:mm
  1. bahuanghou

    0下载:
  2. 八皇后问题:我们都知道,在国际象棋里,皇后这子实在忒强了,能横走竖走,还能斜走, 现在我们手头有一个国际象棋棋盘(和二维数组很像啊),还有八个皇后(也许我们可以用‘Q’来表示) 现在我们把八个皇后放在棋盘上,条件是:八个皇后不能互吃,也就是说,不能有两个皇后在 同一行或同一列或同一斜线上!
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:37.32kb
    • 提供者:libo
  1. bahuanghou

    0下载:
  2. 八皇后的一个小游戏的c语言实现,有空可以下了看看。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.02kb
    • 提供者:ren
  1. bahuanghou

    0下载:
  2. 八皇后了看见发 疯狂数据分类开始减肥凯撒福建考生独立开发就-8 Queen of the data classification to see the beginning of crazy-fat diet Caesar Fujian candidates on the independent development
  3. 所属分类:MultiLanguage

    • 发布日期:2017-03-24
    • 文件大小:284.19kb
    • 提供者:wanganxiang
  1. bahuanghou

    0下载:
  2. 八皇后经典算法 包括回溯和枚举两种方法 八皇后经典算法 包括回溯和枚举两种方法-8 Queen
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-24
    • 文件大小:1.86kb
    • 提供者:sunmiaoa
  1. bahuanghou

    0下载:
  2. 八皇后问题解,功能详见程序,我在网上找的-8 Queen s problem solution, functions as detailed in the procedure, I find the online
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:13.39kb
    • 提供者:王文江
  1. bahuanghou

    0下载:
  2. 一个解决了一个数学难题的精典C++小游戏、欢迎您的上载。-A solution of a classical mathematical problems C++ Game, you are welcome to upload.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:502.17kb
    • 提供者:flyming
  1. bahuanghou

    0下载:
  2. 八皇后问题,能过正确解答出八皇后问题的解 共有52个 好像-8 Queen s problem, to have the correct answers to eight the solution s total of 52 seems to
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:877byte
    • 提供者:zstill
  1. bahuanghou

    0下载:
  2. 在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-In the 8x8 grid of the International Chess Queen placed eight, making it unable to attack each other, that can not be any two Queen s in the same line, the same row or on the same slash an
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:981byte
    • 提供者:李天森
  1. bahuanghou

    0下载:
  2. 数据结构课程实际。八皇后问题如下:在8*8的国际象棋棋盘上放置了八个皇后,要求没有一个皇后能吃掉另一个皇后,即任意两个皇后都不处于棋盘的同一行、同一列或同一对角线上。-The actual data structure courses. 8 Queen
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:13.45kb
    • 提供者:jds
  1. BaHuangHou

    0下载:
  2. 题目:八皇后问题。 八皇后问题是指求解如何在国际象棋8*8棋盘上无冲突的放置八个皇后棋子。因为在国际象棋里,皇后的移动方式是横竖交叉,所以在任意一个皇后所在的位置的水平,竖直和斜45度都不能有其他棋子的存在。一个完整的无冲突的八皇后棋子分布成为八皇后问题的一个解。设计思路:我使用了回溯的方法来解决八皇后问题,也就是逐次试探的方法。这个方法是通过函数putchess()对自身的递归调用来实现的。运行程序后,主函数调用putchess()函数在棋盘第一行第一列上放置棋子,开始向下一行递归。每一步
  3. 所属分类:Chess Poker games

    • 发布日期:2017-03-30
    • 文件大小:30.44kb
    • 提供者:cl
  1. bahuanghou

    0下载:
  2. 有关八皇后游戏的算法,程序运行后输出八皇后游戏所有的结果-Queen' s eight games on the algorithm, after running eight output the results of all the Queen' s Game
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:1kb
    • 提供者:孟令钊
  1. bahuanghou

    0下载:
  2. VC环境下八皇后问题的算法实现,比较简单的实现方式。-VC environment issues under the eight Queen' s algorithm, a relatively simple way to achieve.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-28
    • 文件大小:223.78kb
    • 提供者:julien
  1. bahuanghou

    0下载:
  2. 八皇后问题,也是相当棘手的,不过凭借我聪明的才智,还是搞定了。-8 Queen' s problem, but also very difficult, but by virtue of talent, I smart, or get.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-26
    • 文件大小:8.07kb
    • 提供者:jy
  1. bahuanghou

    0下载:
  2. 八皇后求解问题 设计报告 数据结构 C++的-8 Queen' s problem solving design report data structure of C++
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:78.61kb
    • 提供者:贾明子
  1. bahuanghou

    0下载:
  2. 该程序实现了8皇后问题,是一种典型的算法。-eight problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:261.06kb
    • 提供者:lichen
  1. bahuanghou

    0下载:
  2. 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。   高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。 ,-Problem F
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-25
    • 文件大小:52.9kb
    • 提供者:cjw
« 12 3 4 »
搜珍网 www.dssz.com