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

搜索资源列表

  1. 用c编写的N*N的螺旋矩阵源代码

    0下载:
  2. /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() {     int i, j, num=1, a[N][N];     for(i=0; i<=N/2; i++) &nb
  3. 所属分类:其他小程序

    • 发布日期:2008-05-05
    • 文件大小:4395
    • 提供者:good@588
  1. match(man&women)

    0下载:
  2. 回溯法 解决男女匹配问题 八男八女匹配-Backtracking address gender matching eight men and eight women match
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1273
    • 提供者:邵柏波
  1. xinchengxu

    0下载:
  2. 包括GRAY码,工作分配问题,会场安排,石子,行数字三角形,最长递增子序列和最小重量机器算法。利用动态规划、回溯法和贪心法-including GRAY code, work assignment, venue arrangements, gravel, and digital triangle, the longest sequences and increase the minimum weight machine algorithm. Using dynamic programming,
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:5597
    • 提供者:lw
  1. Text3

    0下载:
  2. 利用C语言中的回溯法对图案的着色问题进行解决并检查颜色可用性生成邻接矩阵-use of the C language law back to the logo coloring problem solving and check availability of generating color adjacency matrix
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1118
    • 提供者:jjin
  1. 040320133

    0下载:
  2. 罗密欧与朱丽叶的迷宫问题 利用回溯法搜索出一条路经,帮助罗密欧走遍所有房间到达朱丽叶的房间-Romeo and Juliet maze of back problems using a way to search by law to help Romeo traveled all the rooms reach Juliet rooms
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2639
    • 提供者:孙月玲
  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. bags

    0下载:
  2. 四种算法(动态规划、回溯法、分支限界法、贪心法)实现0-1背包问题-four algorithms including dynamic planningm,tracing,branch and bound method and greedy to implement 0-1 bag problem.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-23
    • 文件大小:7199463
    • 提供者:王赛
  1. jingdiansuanfa

    0下载:
  2. 经典算法+分支限界法+分治法+动态规划+贪心算法+回溯法-Classical branch and bound algorithm+ France+ divide and conquer dynamic programming+++ backtracking greedy algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:280651
    • 提供者:云博
  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. suanfaqxf

    1下载:
  2. 算法实验报告+源代码 实验一 1题 归并排序.cpp 11 实验一 2题 快速排序.cpp 12 实验二1题 贪心法求背包问题.cpp 13 实验二2题 贪心法求最短路径.cpp 16 实验三 动态规划求最短路径.cpp 17 实验四 回溯法求背包.cpp 18-Algorithm+ source code for test lab reports a problem for a merge sort. Cpp 11 question tes
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:109021
    • 提供者:秋思狐狸
  1. 最速下降法和牛顿法

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

    • 发布日期:2017-12-24
    • 文件大小:1024
    • 提供者:Camille1994
  1. 回溯法

    0下载:
  2. 利用回溯算法和动态规划函数,编写了资源约束下的二维动态规划算法,可用于资源分配方面的问题(Using backtracking algorithm and dynamic programming function, we write a two-dimensional dynamic programming algorithm under resource constraints, which can be used for resource allocation)
  3. 所属分类:matlab例程

    • 发布日期:2018-04-20
    • 文件大小:2048
    • 提供者:trust123
« 1 2 34 5 6 7 8 9 10 ... 29 »
搜珍网 www.dssz.com