Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • bc_mfc.rar 使用Binomial Cofficient的演算法,並以Divide-and-Conquer以及Dynamic Programming的方式來實作,並以比例尺來做比較
  • ChessboardCover.rar Chessboard Cover,On a chessboard,only one square is different, called specific.Use the Divide-and-Conquer methods to solve the Chessboard Cover Problem.
  • contourss.rar A divide and conquer deformable contour method.学习snake模型的好书。
  • dye-Divide-and-conquer.rar ... 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: the solutions to ...
  • lec09-10-divide-conquer.rar DIVIDE AND CONQUER SLIDES IN ALGORITHMS
  • Divide-and-Conquer-maxmin.rar 分治策略 maxmin算法 求数组A[1...n]最大最小元素
  • Divide-and-conquer-algorithm.rar 分治算法是基于多分枝递归的一种算法设计模式。分治算法递归地把一个大问题分解为多个类型相同的子问题,直到这些子问题足够的简单能被直接解决。最后把这些子问题的解结合起来就能得到原始问题的解。
  • divide-and-conquer-method.zip 介绍分治法的设计思想并举例,有串匹配问题,排序问题,组合问题中的分治法,既有伪代码也有源程序
  • recursive-divide-and-conquer.zip 算法设计课件(第二章递归与分治),主要讲述递归与分治
  • divide-and-conquer.zip 分治算法的介绍和C源程序。包含数学建模的分治算法的编程心得