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

搜索资源列表

  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. nqueen

    0下载:
  2. n皇后问题, 数据结构编程(c++语言)-n queeen
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1526
    • 提供者:筱立
  1. Queens.cpp

    0下载:
  2. 采用LasVegas算法解决N皇后问题,设置了stepVeags,即前stepVeags步采用随机算法放置皇后,剩下的采用回溯法放置皇后-solve the N Queens problem using LasVegas
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-29
    • 文件大小:1072
    • 提供者:shan he
  1. 8_Queens_revised

    0下载:
  2. N皇后问题的所有解,设定解栈大小为100,N大于时,需要增大解的栈,否则会栈溢出.-all the solution to N Queen (N<=8, else stack overflow)
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1730
    • 提供者:黄甦
  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. cplus

    0下载:
  2. 数据结构中的n皇后问题的实现算法,感兴趣的自己看看吧-Data structure algorithm n queen problem, of interest to see it yourself
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:216410
    • 提供者:sdff
  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. Queen

    0下载:
  2. N皇后问题,hopfield,回溯法,人工智能-N-Queen hopfield,huisu
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-10
    • 文件大小:2278869
    • 提供者:kobe
  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. 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. 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. nqueen.c

    0下载:
  2. linux下用c语言实现的N皇后问题,其中皇后的个数可以自己随便定义。输出所有可能的解。-n queen
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:633
    • 提供者:qq
  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. MyClass

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

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