CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 分治

搜索资源列表

  1. 123

    0下载:
  2. 一、最长公共子序列问题;二,最大子段和问题(分治算法)-First, the longest common subsequence problem Longest common subsequence problems longest common subsequence problem Longest common subsequence problem
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:92743
    • 提供者:王海颖081
  1. digui

    0下载:
  2. 该段代码主要用于实现用分治递归法求解中位数问题,编码平台vs2008,使用语言c-When the code used to implement the main with partition recursive method is used to solve the problem of digits, coding vs2008 platform, the use of language c++
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:986
    • 提供者:闫皓渊
  1. zuhe

    0下载:
  2. 递归分治算法 从M个不同字符中任取N个字符的所有组合-the number of methods selecting N char from M chars
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:654
    • 提供者:张三
  1. dbbz

    0下载:
  2. 自己实现的敌兵布阵的源代码,HDOJ1066题,数据结构使用了线段树和树状数组,算法策略使用了分治策略。-Own implementation of the enemy soldiers ended their source code, HDOJ1066 question, data structures using the segment tree and the tree array, the algorithm strategy of divide and conquer strategy
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:1074
    • 提供者:张贺
  1. 3_2

    0下载:
  2. 主元素 线性选择算法主元素的判定(分治策略) 设T[0:n-1]是n个元素的数组,如果其中某个元素x在整个数组中的出现次数超过n/2,则称x为数组T的主元素。 请设计一个分治算法,判断数组T={1,2,2,2,3,4,3,2,2,4,2,2,6,7,2,2}中是否存在主元素。 -main character
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:969
    • 提供者:yzj
  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. yuwen1

    0下载:
  2. 实验题目 分治算法的应用 实验内容 1、 二分搜索算法实现; 2、 大整数乘法或Strassen矩阵乘法的实现。 -Experimental subject partition use of the algorithm The experiment content 1, search algorithm dichotomy 2, big integer Strassen multiplication or the realization of the matrix
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:5639
    • 提供者:宇文
  1. SurveyofTriangulation-Methods

    0下载:
  2. Delaunay三角剖分的几种算法综述,逐点插入、分治算法、生长算法-Survey of Triangulation Methods
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1335289
    • 提供者:吉祥如意
  1. lab22

    0下载:
  2. 首先,定义两个对象一个定义了点的x,y坐标和它的标号,另一个对象是两点之间的距离。然后用冒泡比较法对点的x,y坐标分别进行排序,编写控制台程序,输入点的个数,分为两种方法求最近点对。根据点的个数分为3个点的情形和大于3个点的情形,3个点的直接对两两点之间的距离进行比较。大于3点的用分治递归法求解,通过划定界限分8块没一点只对其他7块内的点进行比较长度最后求出最短距离。-First of all, define two object a definition of a x, y and its l
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1406
    • 提供者:安智超
  1. xunhuansairichengbiao

    0下载:
  2. 循环赛日程表描述: 用分治算法生成循环赛日程表(1到2的n次方个人)输入: 一个整数n 输出: 循环赛日程表(1到2的n次方个人) -The round-robin schedule: divide and conquer algorithm to generate a round-robin schedule (1-2 n-th individual) Input: an integer n output: (1-2 of the n-th individual of th
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:10851
    • 提供者:wangyilin
  1. QuickSort

    0下载:
  2. 快排算法,基于分治策略,递归实现,适合数据结构的初学者研究。-Fast row algorithm based on divide and conquer strategies, recursive implementation, suitable for beginners study of data structures.
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:925801
    • 提供者:
  1. The-algorithm-analysis-and-design

    0下载:
  2. 研究生上课所用的算法分析与设计相关文档PPT,分八个章节对算法进行详细介绍: 第1章 算法引论 第2章 递归与分治策略 第3章 动态规划 第4章 贪心算法 第5章 回溯法 第6章 分支限界法 第7章 概率算法 第8章 NP完全性理论 -Graduate classes used in algorithm analysis and design documents the PPT is divided into eight chapters on the alg
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:2044201
    • 提供者:独角之灵
  1. fe4nzhi

    0下载:
  2. 提供了分治算法的多种实现,分治算法是一种很经典的算法-Divide-and-conquer algorithm provides multiple implementations, divide and conquer algorithm is a classic algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:7844
    • 提供者:huyanhua
  1. fengzhisuanfa

    0下载:
  2. 分治算法代码以比较为基础的排序时间的下界-The lower bound of the divide and conquer algorithm code to comparison-based sorting time
  3. 所属分类:Data structs

    • 发布日期:2017-11-30
    • 文件大小:27970
    • 提供者:xuemaoyang
  1. MaxAndMin

    0下载:
  2. 递归分治思想实现S串中同时求出最大元和最小元。-with divid and conquer, to find out the max and min number in the string S.
  3. 所属分类:Data structs

    • 发布日期:2017-11-28
    • 文件大小:711
    • 提供者:kelsi
  1. code

    0下载:
  2. 3道分治算法题目以及解析。题目为图片,对应题目名有对应程序,在C/C++语言编译环境中测试通过。-3 topics as well as parsing of divide-and-conquer algorithm. Subject to the pictures corresponding topic name corresponding to the program, the test passed in the C/C++ language compiler environment.
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:227693
    • 提供者:伯南克
  1. point

    0下载:
  2. 用分治算法(O(nlogn)复杂度)实现寻找n个点中最邻近点对,输出为最邻近距离的平方-Looking for n points nearest point, the output of the nearest neighbor distance squared using the divide-and-conquer algorithm (O (nlogn) complexity)
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:909973
    • 提供者:张月秋
  1. Divide-and-ConqueraaMST

    0下载:
  2. 分治,最小生成树。自己做题的心得以及代码,希望可以对初学者起到一点作用。-Divide and conquer, minimum spanning tree
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:10993
    • 提供者:Rain
  1. conquer-and-divide-algorithm

    0下载:
  2. 本章描述了讲解了分治算法的基本思想和设计过程以及原理-Explain the basic idea and design process as well as the principle of divide and conquer algorithm described in this chapter
  3. 所属分类:Data structs

    • 发布日期:2017-11-17
    • 文件大小:547959
    • 提供者:fengjianlong
  1. maze

    0下载:
  2. 分治算法,走迷宫问题,0可通过,1不可通过。-Divide and conquer algorithms, Maze problem by, not by.
  3. 所属分类:Data structs

    • 发布日期:2017-12-06
    • 文件大小:543
    • 提供者:林洁
« 1 2 3 45 »
搜珍网 www.dssz.com