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

搜索资源列表

  1. Msgserver

    0下载:
  2. Npc Server Key conquer online server
  3. 所属分类:SQL Server

    • 发布日期:2017-04-05
    • 文件大小:3887
    • 提供者:Rodrigo Teles
  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. max

    0下载:
  2. 实验描述:给定X和Y都是n位整数,计算乘积XY。分治算法思想,将n位X和Y分成2段,每段n/2位。则X分为AB两段,Y分为CD两段。 有X=A*(10)^(n/2)+B,Y=C*(10)^(n/2)+D;XY=(A*(10)^(n/2)+B)(C*(10)^(n/2)+D)=AC*(10)^n+(AD+BC)*(10)^(n/2)+BD。 -Experiment: given X and Y are n-bit integers, calculate the product of the
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:985
    • 提供者:tianguochao
  1. Computer-algorithm-designanswer-

    0下载:
  2. 计算机算法设计,递归与分治策略,动态规划,贪心算法,回朔法,分支界限法,线性规划与网络流,NP完全问题与近似算法等-Computer algorithms, recursive and the strategy of divide and conquer, dynamic programming, greedy algorithms, backtracking method, branch and bound method, linear programming and network flow
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-24
    • 文件大小:8065186
    • 提供者:李志伟
  1. CoreConquer---Copy

    0下载:
  2. i have no clue old conquer
  3. 所属分类:MacOS编程

    • 发布日期:2017-05-18
    • 文件大小:4616835
    • 提供者:warrior652
  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. Exhaustive-N-binary-system-number

    0下载:
  2. 列举N位二进制数,的分治递归算法,由C语言写成,附带运行,生成文件-Enumerate the N-bit binary number, divide and conquer recursive algorithm, written in C, with run to generate the file
  3. 所属分类:CSharp

    • 发布日期:2017-03-25
    • 文件大小:168371
    • 提供者:linyuan
  1. Round-robin-schedule

    0下载:
  2. 采用了递归分治的思想,解决了循环赛日程表的安排。-The idea of ​ ​ using a recursive divide and conquer to solve the arrangement of the round-robin schedule.
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:195765
    • 提供者:linyuan
  1. JCCitylinea

    0下载:
  2. Java实现的采用分治算法的城市轮廓线线程序,《算法引论》73页的相应实现源码 -Java implementation of the city skyline divide and conquer algorithm line program, the corresponding implementation source code of algorithm Introduction 73
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:3150
    • 提供者:系统,结构
  1. Ccityzipo

    0下载:
  2. 城市轮廓线算法。采用分治发算法,输入入为第一行房子个数,而后(左,高,右)。 -City skyline algorithm. Hair algorithms using divide and conquer, enter into the first line of the house number, then (left, right).
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:3033
    • 提供者:
  1. Dtriangulation-cdel

    0下载:
  2. 离散高程点生成TIN的算法,分治算法,速度还可以,对于数据量比较大的情况也有不错的处理速度 和效果。-Discrete elevation points to generate the TIN algorithm, divide and conquer algorithm, the speed can also be larger than the data also has good processing speed and effect.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:811655
    • 提供者:刘辉
  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. MERGE-SORT

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

    • 发布日期:2017-11-10
    • 文件大小:539
    • 提供者:wangshuangxi
  1. divid

    0下载:
  2. divid算法,可用于分治法,对于数据结构的学习较有帮助-divid algorithm can be used to divide and conquer
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:1231291
    • 提供者:刘佳霖
  1. matrix_compute

    0下载:
  2. 该程序用于计算矩阵的乘方和,采用算法设计中的分治法实现,计算速度快,算法复杂度低。-Involution of the procedures used to calculate the matrix using the divide and conquer algorithm design to achieve calculation speed, low complexity of the algorithm.
  3. 所属分类:Console

    • 发布日期:2017-11-21
    • 文件大小:695018
    • 提供者:liubin
  1. compute_lasfousnum

    0下载:
  2. 采用分治法快速求解拉斯斐切数。代码用C语言编程实现,可用于处理数学问题。-The divide-and-conquer method fast solving Lasifeiqie number. Code with C language programming, can be used to deal with mathematical problems.
  3. 所属分类:Console

    • 发布日期:2017-11-23
    • 文件大小:659290
    • 提供者:liubin
  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. fenzhifa

    0下载:
  2. 分治法排序。 分治策略是:对于一个规模为n的问题,若该问题可以容易地解决(比如说规模n较小)则直接解决,否则将其分解为k个规模较小的子问题,这些子问题互相独立且与原问题形式相同,递归地解这些子问题,然后将各子问题的解合并得到原问题的解。-Divide and conquer sort
  3. 所属分类:Other systems

    • 发布日期:2017-12-03
    • 文件大小:858437
    • 提供者:raul
  1. Merge-sort

    0下载:
  2. 合并排序算法,使用分治法,VC++6.0下经典排序算法。-Merge sort algorithm using a divide-and-conquer method, VC++6.0 under classical sorting algorithms.
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-10
    • 文件大小:28351
    • 提供者:李俊杰
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 22 »
搜珍网 www.dssz.com