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

搜索资源列表

  1. 历年试题1

    0下载:
  2. 软件设计师历年真题,有C语言题目的答案,而且有回溯法,递归等方法-software designers simulated calendar year, the C language is the subject of the answer, but is retroactive law, recursive methods
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2977895
    • 提供者:余磊
  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. VBKing

    0下载:
  2. 这是我的课程设计报告,本来是用VB设计一个界面出来,里面包含多种小游戏的,可惜删了,只剩下一份报告,里面包含了各个小游戏的程序算法代码:回溯法求解皇后问题、冒泡法的算法描述、快速排序法、二叉排序树(这里用C语言描述)、顺序查找算法、二分法查找、二叉排序树查找(这里用C语言描述)-This is my course design, originally designed with VB is an interface, and which contains a variety of small g
  3. 所属分类:其他游戏

    • 发布日期:2008-10-13
    • 文件大小:13801
    • 提供者:天路
  1. hamilton9901

    0下载:
  2. 给定一个n个结点的连通图,用回溯法求出图中含有的所有哈密尔顿环。包含实验报告。 -given a n nodes in a graph, with retrospective method, the map contains all the Hamilton Central. The report contains experiments.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8120
    • 提供者:nanaleer
  1. PackageProblem

    2下载:
  2. 实现背包问题 package problem 1. 问题描述 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 读入T、n、w1 , w2 , … , wn
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9296
    • 提供者:李昭明
  1. diamondalthoms

    0下载:
  2. 回溯法的钻石问题,用c编写,算法设计的问题。 -Backtracking diamond issue, c prepared, algorithm design problems.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1576
    • 提供者:jimqdu
  1. BacktrackPack

    0下载:
  2. 算法分析与设计,回溯法,通过工程切割来进行回溯发分析-algorithm analysis and design, retroactive law, the adoption of projects to cut back hair analysis
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:25464
    • 提供者:jack
  1. MagicSquare-huishu

    0下载:
  2. 当年,学turbo c的时候,书上有一个魔方算法;十年后,一个偶然的应用,我编写了这个回溯法的魔方算法。优点:可以计算n阶魔方的所有可能组合。-year, the school turbo c, the book is a Rubik's cube algorithm; Ten years later, an accidental use, I prepared this retroactive law Cube algorithm. Advantages : can calculate
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3112
    • 提供者:双色球
  1. chinahorse

    0下载:
  2. 如果車不動,請設計算法:按馬走日的方法但又不能被車吃掉,用回溯法設計馬的走法,並打印出路程.可以做為軟體設計的參考-If the car does not move, please algorithm design : taking Japan by Ma but the car can not be eaten, Design Retrospective with a horse walk, and print out distance. can be used as a reference
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:3023
    • 提供者:張小龍
  1. c++huisu

    0下载:
  2. 背包回溯法,初来乍到如有其他问题还请各位多多指教.-knapsack backtracking, just arrived at that if other issues also invited to the exhibitions.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5113
    • 提供者:lee
  1. computerdisign-C

    0下载:
  2. 算法的设计方法(C程序):一、迭代法 二、穷举搜索法三、递推法 四、递归五、回溯法 六、贪婪法 -algorithm design method (C program) : 1, 2 iteration, the exhaustive search method three, four recursive method, recursive 5, backtracking 6, greedy algorithm
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:34671
    • 提供者:xuyan
  1. 0-1snap

    0下载:
  2. 算法设计与分析 第五章王晓东版的 回溯法的0-1背包问题 -algorithm design and analysis of the fifth edition of Wang Xiaodong Zhang law retroactively 0-1 knapsack problem
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:316140
    • 提供者:xiaobao89
  1. optimizebackpack

    0下载:
  2. 背包问题c算法实现,利用回溯法实现的背包问题详解,内附源代码即详细注解,以及一些优化的思想,很容易理解,是一个很好的算法,通过调试,可以运行。-knapsack problem c algorithm, using the retrospective method to achieve Hi knapsack problem, the source code that contains detailed notes, and some optimization thinking, it is e
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2184
    • 提供者:xiaowei
  1. nqueen_LV

    0下载:
  2. 利用回溯法和随机算法中的拉斯维加斯算法求解n皇后问题。-use of retrospective law and randomized algorithm of Las Vegas algorithm n Queen's problem.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1307
    • 提供者:
  1. EightQueues

    0下载:
  2. 八皇后VC图形演 算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的皇后后,第i+1行找不到合适的位置,这时就回到第i行,把第i行的皇后放到下一个位置,继续尝试下一行。如此反复,知道找到所有的解。注意,这种算法找的解可能有等价的,某些解可由别的解经过旋转棋盘得到。-eight Queen's VC graphics algorithm thinking : A Retrospective, th
  3. 所属分类:其他游戏

    • 发布日期:2008-10-13
    • 文件大小:61217
    • 提供者:duyankang
  1. 8-queens

    0下载:
  2. 数据结构算法:回溯法编程寻找八皇后问题的所有解,使用语言C/C-algorithm data structure : backtracking programming for the Queen's eight all solutions, the use of language C / C
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6224
    • 提供者:王卫国
  1. _QUEENS

    0下载:
  2. 八皇后程序:回溯法寻找N规模的皇后可能分配-8 : backtracking N-scale search for the Queen's possible allocation
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:3860
    • 提供者:David
  1. TiaoQiprogram

    0下载:
  2. 运用回溯法编写了国际跳棋的程序.并且考虑了对称性快速得出所有答案.-retroactive application of the international law to prepare drafts procedures. Symmetry and considered all the answers come quickly.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:386802
    • 提供者:张新
  1. 1migong

    0下载:
  2. 这是使用回溯法求解迷宫问题的程序。程序把迷宫问题设计成一个类,搜索函数使用回溯法搜索迷宫的所有分支。 migong.cpp就是程序 migong.txt是运行结果-This is the use of retrospective method maze of procedures. Maze procedure, so designed as a category, search function uses backtracking search all branches of the
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1270
    • 提供者:丁丁
  1. RaidersotheLostArk

    0下载:
  2. 福建师范大学第三届程序设计比赛中的一道试题.用回溯法解决.-third Fujian Normal University Design Competition of an item. With retroactive law.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:393460
    • 提供者:季永光
« 1 2 3 45 6 7 8 9 10 ... 32 »
搜珍网 www.dssz.com