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

搜索资源列表

  1. qipanfugai_matlab

    0下载:
  2. 用matlab编写的棋盘覆盖问题的解决,有清楚的注释,帮助学习者了解分治法在类似问题中的应用-Matlab prepared by the board covering problems, clear notes, to help students understand the divide and conquer similar problems
  3. 所属分类:Chess Poker games

    • 发布日期:2017-04-10
    • 文件大小:1028
    • 提供者:pfid
  1. fzfksfl

    0下载:
  2. 分治法快速排序的c++代码,实现平台为visual studio 2008-Divide and conquer quicksort c++ code, the platform for Visual Studio 2008
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:704
    • 提供者:Lc
  1. NearestPoint

    0下载:
  2. 使用分治法实现最近点对算法,图形化界面,可以通过鼠标点击生成点也可以随机生成,并计算得到最近点对-Divide and conquer method to achieve the closest point algorithm, graphical interface, can be generated by a mouse click can also be randomly generated, and calculated to the nearest point on
  3. 所属分类:Algorithm

    • 发布日期:2017-04-16
    • 文件大小:14277
    • 提供者:冷暖
  1. algorithms

    0下载:
  2. 附件是邓建明老师上的算法课的详细课件,设计算法设计与分析的各个方面,如分治法,贪心算法,平摊分析等,希望对大家有帮助-Attachment algorithm Jian-ming teacher lesson courseware, and all aspects of the design algorithm design and analysis, such as divide and conquer method, greedy algorithms, amortized analysis
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:3285595
    • 提供者:赵毅
  1. 1

    0下载:
  2. 分治法最优三角剖分 三角剖分与Delaunay剖分的定义 Delaunay三角剖分的定义 -divide and conquer delaunay triangulation
  3. 所属分类:File Formats

    • 发布日期:2017-04-06
    • 文件大小:64398
    • 提供者:无情
  1. multiplication

    0下载:
  2. 分治法求大整数乘法,包含简易的分支思想的阐述及大整数乘法实现代码和报告-The method of the large integer multiplication
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:274357
    • 提供者:友奕
  1. FillBoard

    0下载:
  2. MFC实现的填充棋盘小程序,鼠标单击窗口任一点,即时生成填充棋盘的解法。填充算法使用分治法。-Fill the chessboard small program is implemented by MFC, mouse click the window at any point, the solution immediately generated to fill the board. Filling algorithm using the divide and conquer.
  3. 所属分类:Chess Poker games

    • 发布日期:2017-05-15
    • 文件大小:3713758
    • 提供者:张贺
  1. bignumber

    0下载:
  2. 分治法实现的大整数乘法。是学习分治算法策略的很好的范例。-Sub-rule method to achieve the large-integer multiplication. Is a good example of learning the strategy of divide and conquer algorithm.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-06
    • 文件大小:896891
    • 提供者:张贺
  1. pai-xu

    0下载:
  2. 顺序表的结构没有给出,作为演示分治法这里从简顺序表取一整形数组数组大小由用户定义,数据随机生成。我们知道如果数组大小为 1 则可以直接给出结果,如果大小为 2则一次比较即可得出结果,于是我们找到求解该问题的子问题即: 数组大小 <= 2。到此我们就可以进行分治运算了,只要求解的问题数组长度比 2 大就继续分治,否则求解子问题的解并更新全局解以下是代码-e order of the table structure did not give a simple order form as a p
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:812
    • 提供者:lzy
  1. TarsusPmultiplication

    0下载:
  2. 分治法大整数乘法课件 概述:算法概要、算法效率 合并排序 快速排序 折半查找 大整数乘法 Strassen 矩阵乘法 分治法解凸包 -Divide and conquer integer multiplication courseware about the function and some problems very effective way to solve the that serious .I think it will be ok!
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:101532
    • 提供者:彭宇
  1. hamilton

    0下载:
  2. 不同于回溯法,分治法解决马的hamilton问题,算法时间复杂度O(n)-the solution to hamilton problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:214570
    • 提供者:吕福煜
  1. test1

    0下载:
  2. 分治法实现大整数乘法,其实应该用数组来保存大整数的,再考虑如何去完善这个程序。但分治算法的核心思想已经尽在其中了。-Divide and conquer method for large integer multiplication
  3. 所属分类:JavaScript

    • 发布日期:2017-04-10
    • 文件大小:765
    • 提供者:张讯
  1. algorithm_report

    0下载:
  2. 算法设计报告5个重要算法,包括贪心,回溯,动态规划,分支限界,分治法-Algorithm design report five algorithms, including greedy, backtracking, dynamic programming, branch and bound, divide and conquer
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-17
    • 文件大小:52154
    • 提供者:warton
  1. Merge-sort

    0下载:
  2. 合并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。 合并排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。 -Merge sort in C/C++
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:692
    • 提供者:congyi
  1. algorithm

    0下载:
  2. 熟悉C/C++语言的集成开发环境;通过本实验加深对分治法、贪心算法的理解。掌握贪心算法、动态规划和回溯算法的概念和基本思想,分析并掌握"0-1"背包问题的三种算法,并分析其优缺点。-Master the greedy algorithm, the dynamic programming algorithm and back of the concept and basic thought, analysis and master "0-1" knapsack problem three algo
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:127091
    • 提供者:武楠
  1. 1

    0下载:
  2. 用C++写的小程序,用递归与分治法实现循环赛日常问题-Small program written in C++ using recursive divide and conquer the round robin day-to-day problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:888
    • 提供者:雪城无月
  1. Divide

    0下载:
  2. 分治法求最值的C++程序实现。算法设计课程可以参考-Divide and conquer method to seek the most value C++ program.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:244573
    • 提供者:zhangke
  1. fenzhi

    0下载:
  2. 查找k1-k2问题从包含n个整数的无序列表中输出第k1小到第k2小之间的所有整数,其中k1<=k2。必须用分治法求解,但是不能简单地重复使用求第k小元素的分治法-Find the small k1 to k2 small integer, k1-k2, the problem from an unordered list with n integers in the output, where k1 < = k2. Divide and conquer method to solve,
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:815
    • 提供者:叶金鑫
  1. Algorithm-analysis-and-design

    0下载:
  2. 计算机实验室 内容: 1、分治法,maxmin算法 2、动态规划,矩阵连乘 3、贪心法, 1)背包问题,2)装载问题 4、回溯法,N皇后问题的循环结构算法和递归结构算法。-Computer laboratory content: 1, partition method, maxmin algorithm 2, the dynamic planning, LianCheng matrix 3, greedy method, 1) knapsack probl
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:4226
    • 提供者:王越瑾
  1. MERGE-SORT

    0下载:
  2. 合并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。 合并排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。 将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为2-路归并。合并排序也叫归并排序。-Merge Sort is an efficient sort
  3. 所属分类:source in ebook

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