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

搜索资源列表

  1. fenzhifa

    0下载:
  2. 分治法的思想是将一个难以直接解决的大问题分割成一些规模较小的几个相似的问题来解决,分治法的求解过程是将整个问题分解成若干个小问题后分而治之,如果分解得到的子问题相对来说还太大,则可反复使用分治策略将这些子问题分成更小的同类型子问题,直至产生出方便求解的子问题,必要时逐步合并这些子问题的解,从而得到问题的解。分治法的求解通常会用到递归,通常会说分治法是一种找大规模问题与小规模问题关系的方法,是递归设计方法的一种具体策略。分治法的基本步骤在每一层递归上都有三个步骤: ① 分解:将原来的规模相对较
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:806
    • 提供者:ss
  1. dongtaiguihua

    0下载:
  2. 动态规划的基本思想是把求解的问题分成许多阶段或 多个子问题,然后按照顺序求解各个子问题。前一子问题的解为后一子问题的求解提供了有用的信息。在求解任一子问题时,列出各种可能的局部解,通过决策保留那些可能达到最优的局部解,舍弃其他的局部解。依次解决各个子问题,最后一个子问题的解就是原问题的解。动态规划算法与分治法类似,但是不同的是,在使用动态规划求解问题时得到的各个子问题往往不是相互独立的。由于动态规划算法解决问题往往有重叠子问题的特点,因此为了减少重复计算,不管该子问题以后是否被用到,只要它被
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:871
    • 提供者:ss
  1. max-and-min

    0下载:
  2. 算法与数据结构,分治算法求最大值最小值,也是一次作业-Algorithms and data structures, divide and conquer algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-04-01
    • 文件大小:596
    • 提供者:刘二好
  1. closestPairPoints

    0下载:
  2. 使用分治法求大量点中的最近点对.使用MFC做用户界面.10^6个点时间大约为0.1妙-Get the closest pair of points from points clouds by divide and conquer method. UI by MFC. It costs about 0.1 second computing from 1,000,000 points
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-04
    • 文件大小:95497
    • 提供者:sparrow
  1. recursive-algorithm

    0下载:
  2. 用算法分析中递归与分治算法实现的,最长公共子序列算法,编程环境为vc-Analysis using the recursive algorithm and the divide and conquer algorithm, the programming environment for the vc++
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:13245
    • 提供者:李雪薇
  1. the-nearest-point

    0下载:
  2. 算法分析实验中,用递归与分治算法实现的最接近点对实验,编程环境为vc-Algorithm analysis experiments, using a recursive divide and conquer algorithm with the nearest point of the experiment, vc++ programming environment
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:22639
    • 提供者:李雪薇
  1. one-day-FS

    0下载:
  2. 一天征服傅里叶变换,对傅里叶变换有比较通俗的解释-One day conquer the Fourier transform, Fourier transform of a relatively popular explanation
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:432195
    • 提供者:
  1. Max-and-Min

    0下载:
  2. 运用递归与分治策略同时找到一组数据的最大最小数,算法复杂度为n*logn-The use of recursive divide and conquer strategy with the same time find a set of minimum and maximum number of data, the algorithm complexity is n* logn
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-31
    • 文件大小:698
    • 提供者:Jack
  1. Board

    0下载:
  2. 棋盘覆盖问题是分治算法的一个经典问题,这里用C++进行了实现,代码在C++Builder下运行通过。-Board cover problem is a classic divide and conquer algorithm problem, here were implemented in C++ code in C++ Builder to run through.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1338
    • 提供者:
  1. Fib

    0下载:
  2. 算法分析基础——Fibonacci序列问题 分治法在数值问题中的应用——最近点对问题 减治法在组合问题中的应用——8枚硬币问题 变治法在排序问题中的应用——堆排序问题-The basis of algorithm analysis- Fibonacci sequence divide and conquer the problem of the numerical problems- the nearest point on the issue by governing law in
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1233772
    • 提供者:林海
  1. cddelaunaray

    0下载:
  2. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:291581
    • 提供者:zrb
  1. fft

    0下载:
  2. 一天征服傅里叶变换,超简单的描述,让没有基础的同学都能看的明白,适合还处在似懂非懂的状态的同志们。-One day conquer the Fourier transform, super simple descr iption, so there is no basis to understand the students can look for is still in the state of half-comprehended comrades.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:437652
    • 提供者:印老大
  1. round-robin-schedule

    0下载:
  2. 分治法 循环赛日程表 设计队伍之间的比赛安排-Divide and conquer design team round robin schedule arrangements between the competition
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:251471
    • 提供者:phoenix
  1. zfpk

    1下载:
  2. 征服免费PK外挂美化版,专门用于征服..本人试过了,还可以-Conquer the free plug-ized PK
  3. 所属分类:Game Hook Crack

    • 发布日期:2017-03-30
    • 文件大小:399397
    • 提供者:whs
  1. eight-queens

    0下载:
  2. 分治法求解八皇后问题,一个简单的分治法应用算法。-Divide and conquer method to solve the eight queens problem, a simple application of divide and conquer algorithm.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-27
    • 文件大小:13804
    • 提供者:李俊炜
  1. test1_1

    0下载:
  2. 设有8个运动员要进行比赛,设计一个日程表: 1)每个选手必须与其他7个选手各赛一次; 2)每个选手一天只能赛一次; 要求:根据分治法基本思想-Of eight athletes to compete to design a schedule: 1) Each player must match the other seven players each time 2) Each player race day only once requirements: According to
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-10
    • 文件大小:1232452
    • 提供者:youbin
  1. Pipeline-problem

    0下载:
  2. 使用C++语言实现了分治和递归的算法,有一定的帮助。-C++ language using a divide and conquer and recursive algorithms, have some help.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:807
    • 提供者:rucy
  1. Tianxiang-learning

    0下载:
  2. 天祥学习,十天征服你的学习资料和思路.可以更快学会单片机-Tianxiang study, ten days to learn to conquer your information and ideas can be learned faster chip
  3. 所属分类:SCM

    • 发布日期:2017-04-16
    • 文件大小:109828
    • 提供者:余木
  1. cPP

    0下载:
  2. 数据结构算法与应用,在简要回顾了基本的C++ 程序设计概念的基础上,全面系统地介绍了队列、堆栈、树、图等基本数据结构,以及贪婪算法、分而治之算法、分枝定界算法等多种算法设计方法,为数据结构与算法的继续学习和研究奠定了一个坚实的基础。更为可贵的是,本书不仅仅介绍了理论知识,还提供了50多个应用实例及600多道练习题。-Data structures algorithms and applications, in a brief review of basic C++ programming con
  3. 所属分类:Data structs

    • 发布日期:2017-05-29
    • 文件大小:12141826
    • 提供者:lifan
  1. fenzhi

    0下载:
  2. 分治法源码,01背包问题,经典的01背包问题-Divide and conquer source, 01 knapsack problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1864
    • 提供者:123
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 22 »
搜珍网 www.dssz.com