当前位置:
首页 资源下载
搜索资源 - divide and conquer
搜索资源列表
-
0下载:
Divide:
the problem into a number of subproblems that are themselves smaller instances of the same type of problem.
Conquer:
Recursively solving these subproblems. If the subproblems are small enough, solve them straightforward.
Combine:
-
-
0下载:
这是一个分治法应用和递归的完美体现,它根据输入的数字在屏幕上打出美丽的图案。-this is a separate rule and the application of recursive the perfect embodiment of its import figures on the screen making beautiful designs.
-
-
0下载:
VC++ 分治法大整数乘法-VC++ divide and conquer large integer multiplication
-
-
0下载:
本算法使用分治法求解最近点对问题。事先用O(nlogn)时间对x坐标进行排序,使得所有的点是按x坐标从小到大排好序的(x坐标相同时y坐标小的排前),然后取下标小于n/2属于左边的点集PL,取下标大于n/2属于右边的点集PR,即用O(1)时间就可以将规模为n的问题分解为两个规模为n/2的、同类型的子问题。分割完毕之后就可以采用分治法,分别求出PL和PR中的最近点对,最终通过递归实现。-This algorithm uses divide and conquer to solve the probl
-
-
2下载:
基于divide and conquer策略的Sutherland-Hodgeman多边形裁剪算法的Matlab程序-Divide and conquer strategy based on the Sutherland-Hodgeman polygon clipping algorithm of Matlab procedures
-
-
1下载:
凸包问题( 分治法与穷举法+测试数据 )-Convex hull problem (divide and conquer and the exhaustive method+ test data)
-
-
0下载:
分治策略 maxmin算法 求数组A[1...n]最大最小元素-Divide and Conquer maxmin
-
-
0下载:
分治算法是基于多分枝递归的一种算法设计模式。分治算法递归地把一个大问题分解为多个类型相同的子问题,直到这些子问题足够的简单能被直接解决。最后把这些子问题的解结合起来就能得到原始问题的解。-Divide and conquer algorithm is based on a multi-branch recursive algorithm design pattern. Divide and conquer algorithm recursively to a large problem into
-
-
0下载:
算法设计课件(第二章递归与分治),主要讲述递归与分治-Algorithm courseware design (Chapter II recursive divide and conquer), focuses on the recursive divide and conquer
-
-
0下载:
分治,最小生成树。自己做题的心得以及代码,希望可以对初学者起到一点作用。-Divide and conquer, minimum spanning tree
-
-
0下载:
利用分治策略求解时,所需时间取决于分解后子问题的个数、子问题的规模大小等因素,而二分法,由于其划分的简单和均匀的特点,是经常采用的一种有效的方法,例如二分法检索。-When solving using the divide and conquer strategy, the time required depends on the number of decomposed sub-problems, the size of sub-problems and other factors, but
-
-
0下载:
组合优化与算法分析 分治算法(divide and conquer)的描述和分析-divide and conquer
-
-
0下载:
《算法引论中》解决分治算法问题以及轮廓问题,讨论算法,适合初学者-" Introduction to Algorithms in the" divide and conquer algorithm to solve the problem and outline problems, discuss algorithms, suitable for beginners
-
-
0下载:
分治算法求解两个有序数组的中位数,求解过程比较详细-Divide and conquer algorithm for solving two ordered arrays median
-
-
0下载:
divide and conquer SLAM
-
-
0下载:
分治算法的基本思想是将一个规模为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
-
-
0下载:
详细讲解了算法学习中的分治算法的原理,并附有详细的例题讲解和伪码-Explained in detail the algorithm of learning the principle of divide and conquer algorithm, with a detailed example to explain and pseudo-code
-
-
0下载:
用C++分治法对数组进行排序、查找(使用windows下的visual C++),分治法是一种有效的排序方法。(Sorting and finding the array by the method of divide_and_conquer in C++, which is an useful method in many cases.)
-
-
0下载:
分治法的详细说明,比较简单易懂,哈哈哈哈(A detailed descr iption of the divide and conquer method)
-
-
0下载:
利用分治法来解决找出n枚硬币中所含有的一枚假币问题(To solve the counterfeit coin problem in n coins by means of divide and conquer method)
-
« 12
3
4
5
6
7
8
9
10
...
19
»