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

搜索资源列表

  1. n_queen

    0下载:
  2. 这个包裹实现的是分支限界法解决n王后问题,input.txt和output.txt分别掌管输入n和输出一种方案-This package implements a branch and bound method to solve the n queens problem, input.txt and output.txt were in charge of input and output of a program of n
  3. 所属分类:CSharp

    • 发布日期:2017-04-01
    • 文件大小:60238
    • 提供者:zhou
  1. XHstudent

    0下载:
  2. 1.对多个链表进行操作 2.回溯法求解0/1背包 3.分枝限界法求解0/1背包 4.回溯法求解n—皇后问题 5.图的操作(邻接表表示)-1. Operate on multiple lists 2. Backtracking method for solving 0/1 knapsack 3. Branch and bound method for solving 0/1 knapsack 4. Backtracking to solve n-queens pr
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:248889
    • 提供者:晓枫
  1. N_queen

    0下载:
  2. N皇后问题实现 及操作 c++实现其数据结构-N queens problem c++ implementation and operation of the data structure to achieve its
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:211737
    • 提供者:hanson
  1. problem-solving

    0下载:
  2. 各种问题算法,包括,N皇后问题回溯算法,动态计算网络最长最短路线,货郎担界限,矩阵乘法动态规划等-Algorithm for various problems, including, N Queens problem backtracking algorithm, dynamic network of the longest shortest path computation, Traveling Salesman boundaries, such as dynamic programming
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:23400
    • 提供者:赵明臣
  1. NQueenrecursion

    0下载:
  2. N皇后的递归算法。使用java语言编写。可以在计算机上实现-N Queens of the recursive algorithm. Using java language. Can be implemented on a computer
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:837
    • 提供者:wanwen
  1. N_queens

    0下载:
  2. 求解N皇后问题:把N个皇后放在一个棋盘上,每行和每列只能有一个皇后。另外,一个皇后只能在任一行、列或对角线上。要求皇后数≥100。用了两种方法,回溯法和启发式修补法。-Solve N Queen' s problem: N queens on a chessboard, each row and each column can have only one Queen. Further, only in a queen in any row, column, or diagonal. Que
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-15
    • 文件大小:1349
    • 提供者:天才
  1. nhuanghou

    0下载:
  2. n皇后问题解法,最典型的是8皇后,用于递归回溯法的经典案例。-n queens solution, the most typical is 8 Queen, for a classic example of a recursive backtracking.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:105974
    • 提供者:刘冰淇
  1. eight-queens

    0下载:
  2. 八皇后问题,是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。 高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。计算机发明后,有多种方法可以解决此问题。 可以通过更改程序中define 的n 的值将其改为任意个数的皇后问题 -Eight queens pr
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:240979
    • 提供者:kyle
  1. nqueen

    0下载:
  2. 解决n皇后问题,利用递归方法实现,输出棋盘及放置位置。-Solve the n queens problem, using a recursive method implementation, the output board and placement.
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-04-10
    • 文件大小:1051
    • 提供者:中元
  1. N_huanghou_problem

    0下载:
  2. 基于C语言的N皇后问题的经典解法,在本人的机器上成功运行通过,下载后即可运行!-C language based on the classic N-Queens problem solution, in my successful run through the machine, you can download to run!
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:461249
    • 提供者:张勇
  1. huisufa

    0下载:
  2. 回溯法是一个既带有系统性又带有跳跃性的搜索算法,它在问题的解空间树中按深度优先策略,从根节点出发搜索解空间树。回溯法求问题的所有解时,要回溯到根,且根节点的所有子树都已被搜索遍才结束。回溯法求问题的一个解时,只要搜索到问题的一个解就可以结束。使用回溯法解决n皇后问题时,用完全二叉树表示解空间,用n元组x[1:n]表示,其中x[i]表示皇后i放在棋盘的第i行的第x[i]列,根据规则任何2个皇后不放在同一行或同一列或同一斜线上,则可以得到等式关系,由此可以进行解决问题。-Backtracking
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:558
    • 提供者:ss
  1. 1080

    0下载:
  2. N皇后( 深度优先搜索 ) n=6-12-N Queens (depth first search) n = 6-12
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:535
    • 提供者:jin
  1. main

    0下载:
  2. 采用启发式修补方法实现的N皇后问题,最后意图的方式输出结果。-Heuristic repair method to achieve the N queens problem, the way the final output intentions.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1563
    • 提供者:陈云卿
  1. queen

    0下载:
  2. C#n皇后问题演示程序,适合初学者学习回溯法-C# n queens problem demo
  3. 所属分类:CSharp

    • 发布日期:2017-04-09
    • 文件大小:247433
    • 提供者:bimuyu
  1. nQueen

    0下载:
  2. N皇后问题:拉斯维加斯算法和回溯法的结合,可以输出每次搜索的节点数(包括成功的搜索和失败的搜索),以及直到找到一个正确结点的搜索总节点数。-N Queens problem: Las Vegas, the combination of algorithm and backtracking, can output the number of nodes per search (including the failure of successful search and the search), a
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:893278
    • 提供者:wf
  1. QueensLVB

    0下载:
  2. 用拉斯维加斯算法实现的一个N皇后问题,N皇后问题是一个NP问题,但这个算法计算速度非常快。-Las Vegas algorithm with an N queens problem, N Queens problem is a NP problem, but this algorithm is very fast.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:335617
    • 提供者:余闷
  1. Form1

    0下载:
  2. N Queens Problem solver
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:964
    • 提供者:Alaa Fouad
  1. MIT_AI_lec_03

    0下载:
  2. 麻省理工的人工智能讲义第三章 约束满足问题 介绍了各种类型的约束满足问题-AI lecture-3 of MIT talking about Constraint Satisfaction Problems (CSPs):N-Queens problem;line labelings;Graph coloring;3-SAT; Model-based recognition etc.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-02
    • 文件大小:939105
    • 提供者:dayuan
  1. MyClass

    0下载:
  2. n皇后问题,这是利用回溯做的,经过验证,绝对正确-n queens problem
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:821
    • 提供者:liukai
  1. Nqueen

    0下载:
  2. 8皇后一直是C语言中的经典问题,本代码利用回溯法解决了N皇后问题-8 Queen has been a classic problem in the C language, the code uses backtracking to solve the N queens problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:6042
    • 提供者:易琪淙
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 16 »
搜珍网 www.dssz.com