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

搜索资源列表

  1. round-robin-schedule

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

    • 发布日期:2017-04-24
    • 文件大小:251517
    • 提供者:nthsChi
  1. round-robin-schedule

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

    • 发布日期:2017-04-25
    • 文件大小:251564
    • 提供者:rnment
  1. medo

    0下载:
  2. 设X[ 0 : n - 1]和Y[ 0 : n – 1 ]为两个数组,每个数组中含有n个已排好序的数。找出X和Y的2n个数的中位数。  编程任务 利用分治策略试设计一个O (log n)时间的算法求出这2n个数的中位数。 数据输入 由文件input.txt提供输入数据。文件的第1行中有1个正整数n(n<=200),表示每个数组有n个数。接下来的两行分别是X,Y数组的元素。结果输出 程序运行结束时,将计算出的中位数输出到文件output.txt中-Let X [0: n- 1
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:659
    • 提供者:王倩
  1. vcsortorder

    0下载:
  2. 各种排序算法大全c++版 直接顺序排序、冒泡排序,选择,快排,希尔排序,堆排序,归并排序、筛选法调整堆、堆排序、一次归并、一趟归并法排序、归并排序的非递归算法、归并排序的递归算法、将两个已排序的子序列归并。-Various sorting algorithms Daquan c++ Version Direct Sequence sort, bubble sort, selection, fast scheduling, shell sort, heap sort, merge sort, fi
  3. 所属分类:File Operate

    • 发布日期:2017-04-05
    • 文件大小:3013
    • 提供者:谈美明
  1. hongheishu

    0下载:
  2. 分治法实现三维最接近点对问题,对分治法的学习有很大的帮助-Divide and conquer method to achieve three-dimensional nearest point of the problem, divide and conquer method for learning a great help
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:163247
    • 提供者:杨帆
  1. strassen-web

    0下载:
  2. 算法课中的矩阵乘法,strassen问题求出几个矩阵的乘积,用divide and conquer思想-Implement the Strassen algorithm algorithm for MatrixMultiplication problem in your favourite language, and compare the performance with grade-school method.
  3. 所属分类:Other systems

    • 发布日期:2017-05-04
    • 文件大小:1159864
    • 提供者:maria
  1. merge-and-count

    0下载:
  2. 完成sort and count算法,是算法分析当中devide and conquer中的一道题-The attached file Q5.txt contains 100,000 integers between 1 and 100,000 (each row has a single integer), the order of these integers is random and no integer is repeated. 1. Write a program to
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1781587
    • 提供者:maria
  1. zuoye5

    0下载:
  2. 二分检索(分治法)给定递增整数序列L,其大小为n,要求使用二分查找法查找任意元素的位置k(序列中第几个)。-Binary search (divide and conquer) given increasing sequence of integers L, and its size is n, and requires the use of binary search method to find the location of any element k (sequence of sever
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:893
    • 提供者:叶小轩
  1. zuoye6

    0下载:
  2. 矩阵乘法(分治法) 设A 和 B 是两个n * n阶矩阵,求它们两的乘积矩阵C。-Matrix multiplication (divide and conquer) Let A and B be two n* n order matrix, find the product of their two matrix C.
  3. 所属分类:CSharp

    • 发布日期:2017-04-04
    • 文件大小:1289
    • 提供者:叶小轩
  1. juzheng

    0下载:
  2. 矩阵乘法(分治法) 设A 和 B 是两个n * n阶矩阵,求它们两的乘积矩阵C。-Matrix multiplication (divide and conquer) Let A and B be two n* n order matrix, find the product of their two matrix C.
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:1291
    • 提供者:叶小轩
  1. zuoye7

    0下载:
  2. 第k小元素(分治法) 给定一个线性序列集,要求求出其中指定的第K小的数的值和位置.如给定n个元素和一个整数i,1≤i≤n,输出这n个元素中第i小元素的值及其位置;-First k small element (divide and conquer) Given a set of linear sequence, where the specified requirements determined the K value and the small number of locations, s
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:949
    • 提供者:叶小轩
  1. divide-and--conquer

    0下载:
  2. 实现大整数相乘,时间复杂度n(logn),c++源码-Achieve a large integer multiplication, time complexity n (logn), c++ source
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1688
    • 提供者:Cube
  1. closest_pair

    0下载:
  2. 分治法思想,求最邻近点对,考虑将所给的n个点的集合S分成2个子集S1和S2,每个子集中约有n/2个点,然后在每个子集中递归地求其最接近的点对-Divide and conquer ideas, find the nearest point to consider given the set S of n points into two subsets S1 and S2, each subset of about n/2 points, and then recursively find its
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-02
    • 文件大小:659793
    • 提供者:baimengying
  1. ProjectX_V3.2

    0下载:
  2. Projectx conquer source for a-Projectx conquer source for all
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-18
    • 文件大小:4626170
    • 提供者:Star
  1. voronoi

    0下载:
  2. Voronoi Diagram算法实现主要运用分治法和凸包的方法来实现。 分治法: 1) 该问题的规模缩小到一定的程度就可以容易地解决 2) 该问题可以分解为若干个规模较小的相同问题,即该问题具有最优子结构性质。 3) 利用该问题分解出的子问题的解可以合并为该问题的解; 4) 该问题所分解出的各个子问题是相互独立的,即子问题之间不包含公共的子问题。 -Voronoi Diagram algorithm is mainly using the method of pa
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:3426
    • 提供者:李阳
  1. PowerCO

    0下载:
  2. great source of conquer-this is just a great work for evry 1
  3. 所属分类:EditBox

    • 发布日期:2017-05-12
    • 文件大小:2714237
    • 提供者:ricardo
  1. GamePatcher

    0下载:
  2. VB源代码编写实现的命令与征服系列图形补丁程序,如果游戏当前在运行中,可能无法进行操作!游戏运行前请将本补丁程序放置在游戏(泰伯利亚之日、红色警戒2、尤里的复仇)根目录下!,如果依旧出现此提示信息,可能是你的游戏版本不匹配.   补丁说明:本补丁程序采用VisualBasic6.0程序编写,喜欢VB源码的可参考,补丁专用于命令与征服系列游戏(泰伯利亚之日、红色警戒2、红色警戒2:尤里的复仇)在Vista/Windows7下可能出现的游戏卡顿、缓慢等问题。如果你在其他系统下使用此补丁出现问题
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:3239
    • 提供者:gpudn36
  1. qsort

    0下载:
  2. 分治递归实现的快速排序算法 时间复杂度nlogn -Divide and conquer recursive quicksort algorithm time complexity nlogn
  3. 所属分类:Other systems

    • 发布日期:2017-04-24
    • 文件大小:20235
    • 提供者:huhao
  1. chessboard-coverage-of-c-code

    0下载:
  2. 利用分治策略对棋盘覆盖问题进行求解,用c语言来实现。-Using divide and conquer strategy chessboard coverage of c code
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:705
    • 提供者:lyz
  1. main6

    0下载:
  2. C语言编写的命令行程序,通过蛮力法、动态规划、分治法求最大字段和,并进行算法效率比较。-C language command-line program, through brute force method, dynamic programming, divide and conquer method for maximum field and, and compare efficiency of the algorithm.
  3. 所属分类:Console

    • 发布日期:2017-04-04
    • 文件大小:2129
    • 提供者:z
« 1 2 3 4 5 67 8 9 »
搜珍网 www.dssz.com