CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - backtracking search

搜索资源列表

  1. 回溯法搜索排列树算法园排列问题

    0下载:
  2. 回溯法搜索排列树算法园排列问题,算法设计与分析课程,作业题-search with backtracking algorithms park with trees, algorithm design and analysis courses, and that operations
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:68466
    • 提供者:老七
  1. migong_BySophia

    0下载:
  2. 程序把迷宫问题设计成一个类,其数据成员有路口个数mazeSize,出口Exit和路口集合*intSec,构造函数读入已存在的数据文件构造描述一个具体问题的迷宫类的对象;其搜索函数TravMaze(int intSecV)的输入参数intSecV为当前所处的路口,搜索函数用回溯法搜索迷宫的所有分支-maze procedure, the design problem into a category of its data members junctions number mazeSize, exp
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:46289
    • 提供者:萌音
  1. totalarrange-recursion-backtracking

    0下载:
  2. 在排列树上递归回溯搜索全排列问题的全部解-Recursive backtracking search tree in the arrangement of the whole array of all solutions of the problem
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:178394
    • 提供者:jory
  1. CommonAlgorithmDesign

    0下载:
  2. 常用的算法设计方法集合,主要有迭代法、穷举搜索法、递推法、贪婪法、回溯法、分治法、动态规划法-Algorithm commonly used method of collection, mainly iterative, exhaustive search methods, recursion, greedy method, backtracking, divide and conquer, dynamic programming
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:67716
    • 提供者:YuMy
  1. Depth-First-Search

    0下载:
  2. Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph. One starts at the root (selecting some node as the root in the graph case) and explores as far as possible along each branch before backtracking.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:1099
    • 提供者:ww
  1. knights-jouney

    0下载:
  2. 北大poj百练上问题“爵士巡游”的解,关于搜索回溯。-The problem the Peking poj 100 practice " Jazz Parade solution search backtracking.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:742656
    • 提供者:黄智鹏
  1. Knight

    0下载:
  2. 1. 问题描述 在一个n*n的棋盘上,一个放在棋盘上某个位置的马是否可以恰好访问每个方格一次,并且回到起始位置上? 2. 回溯法的一般思路 深度优先搜索,若寻找到满足要求的解,则输出;否则推回上一层往下一个方向搜索。 3. 求解问题的回溯算法描述 对于当前所在位置(x,y),依次枚举n个方向搜索,直到找到一组可行解为止。使用剪枝有3处:第一、使用Warnsdorff s rule,枚举当前解得时候优先选择下一步可行步数最少的方向;第二、若第一点中的方向存在不止一个,则优先选择
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-24
    • 文件大小:363247
    • 提供者:Jim Wu
  1. backtrack

    0下载:
  2. 使用纯回溯法求解八皇后问题,按行放置皇后,如果未发现可行位置,后退一行,继续搜索-Use plain backtracking to solve the eight queens problem, row placed Queen, If you do not find a viable position, retreat and his entourage continue search
  3. 所属分类:Other systems

    • 发布日期:2017-11-16
    • 文件大小:758
    • 提供者:bao
  1. backtrack_queens

    0下载:
  2. 使用纯回溯法求解八皇后问题,按行放置皇后,如果未发现可行位置,后退一行,继续搜索-Use plain backtracking to solve the eight queens problem, row placed Queen, If you do not find a viable position, retreat and his entourage continue search
  3. 所属分类:Other systems

    • 发布日期:2017-11-10
    • 文件大小:772
    • 提供者:bao
  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. xunhuansai

    0下载:
  2. n个运动员要进行网球循环赛。每个选手必须与其他n-1个选手各赛一次 ,每个选手一天只能赛一次。-Backtracking algorithm. It is a systematic search for the problem solution method.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-20
    • 文件大小:1298701
    • 提供者:lx
  1. TaskDistribution

    0下载:
  2. 算法设计与分析中的任务分配问题。 用回溯法解该问题时,用完全n叉树表示解空间。可行性条件select 剪去不满足行、列约束的子树。递归方法 backtrack(1)实现对整个解空间的回溯搜索;backtrack(i)搜索解空间中的第i层子树,sum记录当前已找到的可行方案 数。在算法backtrack中,当i>n时,算法搜索至叶子结点,当前已找到的可行方案数sum加1;当i<=n时,当前扩展结点 Z是解空间中的内部结点。该结点有x[i]=1,2,...,n共n个
  3. 所属分类:Console

    • 发布日期:2017-04-08
    • 文件大小:1897
    • 提供者:
  1. FindStudent

    0下载:
  2. 把长度为l1,l2…ln 的n个程序放在磁带T1和T2上,并且希望按照使用最大检索时间取得最小值的方式存储,即如果存放在T1和T2上的程序集合分别为A和B,则希望所选择的A和B使得max{∑li 1,∑li2}(i1属于A,i2属于B)取得最小。 使用回溯法实现-The length of L1, L2... Ln n programs put in the tape on T1 and T2, and hope that in accordance with the maximum searc
  3. 所属分类:Console

    • 发布日期:2017-05-17
    • 文件大小:4442404
    • 提供者:321
  1. 3

    0下载:
  2. 需要用回溯算法的题目:n皇后问题、素数方格问题、构造字符串、迷宫问题(包含题目及详细解答)。 回溯法的优化:递归前对尚待搜索的信息进行预处理、记忆化搜索。-Backtracking algorithms needed topics: n queens problem, prime squares problem, construct a string, the maze problem (including the title and a detailed answer). Optimi
  3. 所属分类:Console

    • 发布日期:2017-04-30
    • 文件大小:8850
    • 提供者:赵靖宇
  1. 最速下降法和牛顿法

    3下载:
  2. 基于回溯线搜索的最速下降法和牛顿法,配数值算例(Steepest descent method and Newton method based on backtracking line search)
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:1024
    • 提供者:Camille1994
搜珍网 www.dssz.com