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

搜索资源列表

  1. juzhen

    0下载:
  2. 矩阵乘法,应用分治的思想方法快速计算两个矩阵相乘的结果-juzhen chengfa
  3. 所属分类:Console

    • 发布日期:2017-04-11
    • 文件大小:1016
    • 提供者:
  1. closestpair

    0下载:
  2. 在visual C++环境中,使用分治策咯实现最邻近点对的查找,并返回最邻近点对距离的平方-In visual C++ environment using divide and conquer tactics to achieve find the nearest point, and returns the nearest point on the square of the distance
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1367904
    • 提供者:李噹噹
  1. divide-and-conquer-algorithm

    0下载:
  2. 分治算法的基本思想是将一个规模为N的问题分解为K个规模较小的子问题,这些子问题相互独立且与原问题性质相同。求出子问题的解,就可得到原问题的解。-The basic idea of divide and conquer algorithm is a scale problem is decomposed into N K a smaller sub-problems, these sub-problems are independent and original problems of the s
  3. 所属分类:matlab

    • 发布日期:2017-04-29
    • 文件大小:7864
    • 提供者:沈甲甲
  1. divide-and-conquerAlgorithm

    0下载:
  2. 在算法设计与分析这门课中,实现分治算法,熟悉二分搜索算法-In the algorithm design and analysis of the course, realize the partition algorithm, familiar with the binary search algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3886
    • 提供者:薛逍遥
  1. include

    0下载:
  2. 1)随机输入平面上n个点的集合; 2)使用分治策略编制计算机程序求出这n个点的极大点。 3)编程实现2维极大点问题的求解,且在程序中体现分治策略。程序能处理任意的n个点。 -1) a collection of n points on a random input plane 2) using divide and conquer strategy computer program to calculate the maximum point of the n point.
  3. 所属分类:CSharp

    • 发布日期:2017-04-29
    • 文件大小:15240
    • 提供者:陈倩
  1. algorithm

    0下载:
  2. 图包问题的多种解法,python实现,蛮力、gramham、分治-Many kinds of solutions, the python package diagram, brute force, Gramham, divide and conquer
  3. 所属分类:Data structs

    • 发布日期:2017-04-30
    • 文件大小:21333
    • 提供者:shiningyu
  1. My_L

    1下载:
  2. L型骨牌(棋盘覆盖问题) -算法分析之分治策略 算法分析与设计 课程中分治策略的典型例子,采用MFC文档编程可视化实现算法; 能够手动进行对棋盘的颜色填充,并能显示棋盘中的填充数值。 由于这是课程作业,时间紧而赶制的,封装性可能比较差。 我用的版本是C++6.0的老版本,静态链接库,其中的exe可以直接运行。-L-type domino (chessboard coverage problem) - divide and conquer strategy algorithm algorith
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-17
    • 文件大小:4401025
    • 提供者:忘了
  1. closet-pair-problem

    0下载:
  2. 求平面内中距离最短的两点的距离,使用分治算法实现的C++代码-closet pair problem
  3. 所属分类:Data Mining

    • 发布日期:2017-04-12
    • 文件大小:1220
    • 提供者:小龙
  1. bignumber.cpp

    0下载:
  2. 这是大数相乘的一般算法,采用链表的方式。实现两个大整数的加、减、乘的运算,其中乘法运算利用分治的方法解决-This is a general algorithm for multiplication of large numbers, using linked list approach. The realization of two big integer add, subtract, multiply computing, in which the use of multiplication
  3. 所属分类:Applications

    • 发布日期:2017-04-13
    • 文件大小:2546
    • 提供者:shi739517
  1. posthost

    0下载:
  2. 邮局选址 问题描述:在一个按照东西和南北方向划分成规整街区的城市里,n个居民点散乱地分布在不同的街区中。用x坐标表示东西向,用y坐标表示南北向。各居民点的位置可以由坐标(x,y)表示。要求:为建邮局选址,使得n个居民点到邮局之距离的总和最小。 提示:带权中位数(分治算法) -Post office location problem descr iption: a north-south direction and in accordance with what is divided
  3. 所属分类:Java Develop

    • 发布日期:2017-04-30
    • 文件大小:112374
    • 提供者:libaodian
  1. MaxSubSum

    0下载:
  2. 用三种方法解决最大子序列和问题,分别是基本方法,分治算法和动态规划算法,算法复杂度不断提高-Three methods were used to solve sequence and the biggest problem, respectively is the basic method and divide and conquer algorithm and dynamic programming algorithm, the complexity of the algorithm is i
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:774
    • 提供者:刘晨
  1. tennis1

    0下载:
  2. 北邮算法设计课程网球循环赛代码,使用分治算法,可以直接提交-BUPT tennis round robin algorithm design course code, use the divide and conquer algorithm, can be submitted directly
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2014
    • 提供者:郭宇梁
  1. fenzhi

    0下载:
  2. 凸包求解算法。 实现基于枚举方法的凸包求解算法 实现基于Graham-Scan的凸包求解算法 实现基于分治思想的凸包求解算法 对比三种凸包求解算法 -Convex hull algorithm. Based on Convex Hull algorithm enumeration method Based on Graham-Scan convex hull algorithm Based on Divide and Conquer convex hull alg
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1157000
    • 提供者:大酱
  1. algorithm

    0下载:
  2. matlab算法详细分析,包括应用广泛的分治算法、灰色预测、时间序列、模拟退火、蚁群算法。-matlab algorithm detailed analysis, including the widely used divide and conquer algorithm, gray forecasting, time series, simulated annealing, ant colony algorithm.
  3. 所属分类:matlab

    • 发布日期:2017-06-21
    • 文件大小:36707588
    • 提供者:姜波
  1. divide-and-conquer-algorithm

    0下载:
  2. 详细讲解了算法学习中的分治算法的原理,并附有详细的例题讲解和伪码-Explained in detail the algorithm of learning the principle of divide and conquer algorithm, with a detailed example to explain and pseudo-code
  3. 所属分类:software engineering

    • 发布日期:2017-05-09
    • 文件大小:1785038
    • 提供者:王雨
  1. veod

    0下载:
  2. 该程序实现对残缺棋盘覆盖问题的求解 分治方法-The program implementation partition method of solving the problems of incomplete cover board
  3. 所属分类:source in ebook

    • 发布日期:2017-12-15
    • 文件大小:2048
    • 提供者:HMdalz_127752
  1. zhongweishu

    0下载:
  2. i.中位数问题 问题描述 设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数组的元素。 结果输出 程序运行结束时,将计算出的中位数输出到
  3. 所属分类:Console

    • 发布日期:2017-12-12
    • 文件大小:551
    • 提供者:武磊
  1. 大作业1

    0下载:
  2. 归并排序是分治思想的经典代表,与以往不同,本次编码为归并排序的非递归实现算法,其结构简洁清晰,可理解性和直观性不亚于原递归实现方法,并且效率更高,可以减轻计算机系统的负担,可用于计算机专业“数据结构”课程教学。(The program is good. And I believe it can help you.it is my thing)
  3. 所属分类:网址推荐

  1. fillChessboard

    0下载:
  2. 用分治策略解决棋盘问题的一个简捷的算法。(A simple algorithm for solving chessboard problem using divide and conquer strategy.)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:1024
    • 提供者:bubble噜
  1. 第2章 递归与分治策略

    0下载:
  2. 将求出的小规模的问题的解合并为一个更大规模的问题的解,自底向上逐步求出原来问题的解(The solution of a small scale problem is combined into a solution of a larger scale problem, and the solution of the original problem is gradually obtained from the bottom up)
  3. 所属分类:matlab例程

    • 发布日期:2017-12-30
    • 文件大小:122880
    • 提供者:ll.leon
« 1 2 ... 11 12 13 14 15 1617 18 »
搜珍网 www.dssz.com