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

搜索资源列表

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

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

    • 发布日期:2017-11-21
    • 文件大小:3720
    • 提供者:
  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. BFSPDFS

    0下载:
  2. 广度优先搜索和深度优先搜索在网络拓扑图上的实现。广度优先搜索是从某一节点开始,搜索与其线连接的所有节点,按照广度方向像外扩展,直到不重复遍历所有节点;深度优先搜索是从某一节点开始,沿着其搜索到的第一个节点不断深入下去,当无法再深入的时候,回溯节点,然后再在回溯中的某一节点开始沿另一个方向深度搜索,直到不重复的遍历所有节点。 -Breadth-first search and depth-first search in the network topology is realized. Bre
  3. 所属分类:Special Effects

    • 发布日期:2017-04-06
    • 文件大小:50609
    • 提供者:小马
  1. TSP

    0下载:
  2. 旅行商问题(Traveling Saleman Problem,TSP)又译为旅行推销员问题、货郎担问题,简称为TSP问题,是最基本的路线问题,该问题是在寻求单一旅行者由起点出发,通过所有给定的需求点之后,最后再回到原点的最小路径成本。采用回溯法,邻点法实现,有图形界面。-TSP (Traveling Saleman Problem, TSP) also translated as traveling salesman problem, traveling salesman problem, r
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2897718
    • 提供者:invest
  1. huisufa

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

    • 发布日期:2017-05-04
    • 文件大小:1098818
    • 提供者:易秋燕
  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. maze-game

    0下载:
  2. 迷宫问题的求解过程可以采用回溯法即在一定的约束条件下试探地搜索前进,若前进中受阻,则及时回头纠正错误另择通路继续搜索的方法。从入口出发,按某一方向向前探索,若能走通,即某处可达,则到达新点,否则探索下一个方向;若所有的方向均没有通路,则沿原路返回前一点,换下一个方向再继续试探,直到所有可能的道路都探索到,或找到一条通路,或无路可走又返回入口点。在求解过程中,为了保证在达到某一个点后不能向前继续行走时,能正确返回前一个以便从下一个方向向前试探,则需要在试探过程中保存所能够达到的每个点的下标以及该点
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1459
    • 提供者:林斌
  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. popstar

    0下载:
  2. 消灭星星的控制台版本,在C4droid下编译成功(使用conio.h),使用了深度搜索的回溯算法.-Elimination of the console version of the stars, in C4droid compiled successfully (use conio.h), the use of backtracking algorithm depth search.
  3. 所属分类:Other Games

    • 发布日期:2017-04-13
    • 文件大小:2402
    • 提供者:王天宇
  1. KMP

    0下载:
  2. 模式匹配算法KMP封装。非常适合从数据流中查找子字符串,尤其是嵌入式编程,非常好用。不同于常见的遍历字串查找,该方法不需要指针回溯和数据缓存,单片、ARM或无操作系统环境下,非常好用,更适合同时查找多个字符串。-请键入文字或网站地址,或者上传文档。 取消 Móshì pǐpèi suànfǎ KMP fēngzhuāng. Fēicháng shìhé cóng shùjù liú zhōng cházhǎo zi zìfú chuàn, yóuqí shì qiànrù shì biā
  3. 所属分类:ARM-PowerPC-ColdFire-MIPS

    • 发布日期:2017-04-13
    • 文件大小:1546
    • 提供者:范莹
  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. Gradient-method

    0下载:
  2. 程序采用梯度下降法求解函数最小值,函数系数矩阵分别为50x50和100x100,梯度下降法中,同时采用了精确直线搜索和回溯直线搜索,并比较了两种方法的收敛速度,用图形表示。文件里面有具体问题描述。-Program uses a gradient descent method for solving the minimum, function coefficient matrix are 50x50 and 100x100, gradient descent method, while using
  3. 所属分类:matlab

    • 发布日期:2017-05-03
    • 文件大小:690366
    • 提供者:
  1. sihuanghou

    0下载:
  2. 人工智能的四皇后问题,回溯法——在约束条件下先序遍历,并在遍历过程中剪去那些不满足条件的分支。 使用回溯算法求解的问题特征,求解问题要分为若干步,且每一步都有几种可能的选择,而且往往在某个选择不成功时需要回头再试另外一种选择,如果到达求解目标则每一步的选择构成了问题的解,如果回头到第一步且没有新的选择则问题求解失败。 在回溯策略中,也可以通过引入一些与问题相关的信息来加快搜索解的速度。对于皇后问题来说,由于每一行、每一列和每一个对角线,都只能放一个皇后,当一个皇后放到棋盘上后,不管它放在棋
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-05
    • 文件大小:126862
    • 提供者:孙铭啸
  1. optimization

    0下载:
  2. 利用梯度法,分别采用回溯直线搜索与一种精确直线搜索求解最优化问题-Using the gradient method, respectively, using backtracking linear search and a precise linear search to solve optimization problems
  3. 所属分类:matlab

    • 发布日期:2017-05-05
    • 文件大小:148429
    • 提供者:cyw
  1. optimize

    1下载:
  2. 利用最速下降法,分别采用回溯直线搜索与一种精确直线搜索求解含等式约束的最优化问题-By using the steepest descent method, the backtracking rectilinear search and a precise linear search are used to solve the optimization problem with equality constraints
  3. 所属分类:matlab

    • 发布日期:2017-05-24
    • 文件大小:7642755
    • 提供者:cyw
  1. op

    0下载:
  2. 利用Newton法,分别采用回溯直线搜索与一种精确直线搜索求解含等式约束的最优化问题-Using the Newton method, we use the backtracking rectilinear search and a precise linear search to solve the optimization problem with equality constraints
  3. 所属分类:matlab

    • 发布日期:2017-05-24
    • 文件大小:7643086
    • 提供者:cyw
  1. 回溯算法实验八皇后问题

    1下载:
  2. 利用回溯算法求解N皇后问题,理解求解流程和搜索顺序(Backtracking algorithm used to solve the N queen problem, understand the flow of the solution and search order)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-12-23
    • 文件大小:105472
    • 提供者:anbao
« 1 2 34 »
搜珍网 www.dssz.com