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

搜索资源列表

  1. N-quenes-problem

    0下载:
  2. N皇后问题,本程序采用二维数组处理N皇后问题,可由用户在运行过程中决定棋盘规格及皇后数目。-N queens problem, the program uses a two-dimensional array processing N-queens problem, decide the number of board specifications and Queen by the user during operation.
  3. 所属分类:Other systems

    • 发布日期:2017-11-19
    • 文件大小:1535
    • 提供者:周磊
  1. code

    0下载:
  2. 使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem. Recursion and divide and conq
  3. 所属分类:Other systems

    • 发布日期:2017-11-30
    • 文件大小:3288
    • 提供者:阿丁汤圆
  1. queen

    0下载:
  2. N皇后问题(含八皇后问题的扩展,规则同八皇后):在N*N的棋盘上,放置N个皇后,要求每一横行每一列,每一对角线上均只能放置一个皇后,问可能的方案及方案数。-queen question
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:841
    • 提供者:wyt
  1. eightqueen

    0下载:
  2. N后问题,利用OPENGL实现简单演示。-N queen problem. using opengl for simple display.
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-25
    • 文件大小:9915
    • 提供者:ofillions
  1. Nqueen_Backtracking

    0下载:
  2. N queen Backtracking 算法N皇后问题的的回溯实现算法-N queen Backtracking Algorithm N Queen s problem of the realization of the backtracking algorithm
  3. 所属分类:Graph program

    • 发布日期:2017-04-04
    • 文件大小:874
    • 提供者:inuedw
  1. main

    0下载:
  2. N皇后问题,本代码使用了图文试的棋盘输出,可动态学习N皇后的问题的解法。-N queen problem, try this code USES graphic board output, dynamically study N queen problem solutions.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:742
    • 提供者:xyx_0
  1. nQueen

    0下载:
  2. n皇后的回溯算法实现及多边形求和的动归实现。-n Queen backtracking algorithm and the sum of dynamic polygon return achieved.
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-11
    • 文件大小:1250
    • 提供者:owthea
  1. NQueens

    0下载:
  2. Implement N Queen’s problem using Back Tracking.
  3. 所属分类:File Formats

    • 发布日期:2017-04-11
    • 文件大小:573
    • 提供者:jcdc987
  1. queen

    0下载:
  2. N皇后问题是算法中回溯法应用的一个经典案例 回溯算法也叫试探法,它是一种系统地搜索问题的解的方法。回溯算法的基本思想是:从一条路往前走,能进则进,不能进则退回来,换一条路再试。 -N queens problem is backtracking algorithm applied a classic case of backtracking algorithm, also called heuristics, which is a systematic method for solvi
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:604805
    • 提供者:余啸坤
  1. The-queen

    0下载:
  2. 实现N个皇后问题,输出所有的排列情况,利用TXT实现输入输出-Realization of N-queens problem, the output of all of the arrangement, the use of input and output TXT achieve
  3. 所属分类:assembly language

    • 发布日期:2017-05-07
    • 文件大小:1446833
    • 提供者:秦启翰
  1. queen

    0下载:
  2. 局部搜索的方法实现n皇后问题,在较快的时间内找到一个n皇后解。-Local search methods to achieve n queens problem and find a solution in n-queens faster time.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-17
    • 文件大小:16393
    • 提供者:欧阳文俊
  1. N_QUEENR

    0下载:
  2. 读入一个值n表示棋盘的大小,然后求出n*n格棋盘上放n皇后棋且不会相互吃掉对方的所有解答-Reading into a value of n, said the size of the chessboard, and then calculated n* n chessboard grid put n Queen s chess and will not eat each other all the answers
  3. 所属分类:Game Program

    • 发布日期:2017-04-13
    • 文件大小:1641
    • 提供者:rtsbefo
  1. Queen

    0下载:
  2. n*n的棋盘上放置彼此不受攻击的n个皇后,按国际象棋规则可知:皇后可以攻击同行同列同斜线的棋子-n* n chessboard placed on each other from attack of the n-Queens, according to chess rules we can see: Queen can attack the peer-pawn with the column with a slash
  3. 所属分类:Game Program

    • 发布日期:2017-03-29
    • 文件大小:903
    • 提供者:thetype
  1. huanghou

    0下载:
  2. 用回溯法求解N-Queen,用键盘输入N;输出此时解的个数,并统计运算时间。 -Solved by backtracking N-Queen, with keyboard input N the number of solutions of output at this time, and statistical computation time.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-12
    • 文件大小:591
    • 提供者:文一
  1. queen

    0下载:
  2. 实现n皇后问题,采用回溯方法简单解决。 有详细注释,适合初学者学习。-Achieve n-queens problem using backtracking method is simple to solve. There are detailed notes, suitable for beginners to learn.
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:829
    • 提供者:齐云杰
  1. N-queens-problem

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

    • 发布日期:2017-04-11
    • 文件大小:636
    • 提供者:林斌
  1. Matlab-file

    0下载:
  2. SA algorithm for solving n-Queen problem
  3. 所属分类:source in ebook

    • 发布日期:2017-04-12
    • 文件大小:1208
    • 提供者:iexoy
  1. climb_mountain

    0下载:
  2. 爬山算法实现n皇后问题,实现速度快,一分钟内可实现n为百万的规模。而且增加了新功能,即对角线上不能存在皇后。-n-queen problem by climbing mountain
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:1250
    • 提供者:沐洛
  1. nQueen

    0下载:
  2. 利用回溯法实现n皇后问题,代码简洁易懂,运行速度快,且有注释-Backtracking method is used to realize the n queen problem, understandable code, run fast, and there are comments
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-12
    • 文件大小:624
    • 提供者:tutu
  1. 1

    0下载:
  2. N-皇后问题,利用回溯算法遍历求出能放置的位置方法。-N- queen problem, the use of backtracking algorithm traverse method can take the place of location.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:718
    • 提供者:韦鑫
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 »
搜珍网 www.dssz.com