Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • 论文研究-Action Recognition Based on Divide-and-conquer.pdf 基于分而治之的行为识别,谭光华,苗瑞,近来深度卷积神经网络在行为识别领域取得了很大的突破。因为连续的视频帧存在大量的冗余信息,相比密集采样,稀疏采样神经网络也
  • 基于C语言的快速排序法源代码quick.c 快速排序使用分治法(Divide and conquer)策略来把一个序列(list ...
  • 伯克利 常用经典算法.zip 计算机常用经典算法 Chapter 0 Prologue Chapter 1 Algorithms with numbers Chapter 2 Divide-and-conquer algorithms Chapter 3 Decompositions of graphs Chapter 4 Paths in graphs Chapter 5 Greedy algorithms Chapter 6 Dynamic programming Chapter 7 Linear programming and ...
  • 伯克利 常用经典算法.pdf Chapter 0 Prologue Chapter 1 Algorithms with numbers Chapter 2 Divide-and-conquer algorithms Chapter 3 Decompositions of graphs Chapter 4 Paths in graphs Chapter 5 Greedy algorithms Chapter 6 Dynamic programming Chapter 7 Linear programming and reductions ...
  • 英文原版-Geometry Essentials For Dummies 1st Edition ...  - get a deal with on the fundamentals of geometry, from strains, segments, and angles, to vertices, altitudes, and diagonals Conquer proofs with confidence - observe easy-to-grasp directions for understanding the parts of a proper geometry proof Take ...
  • Packt.Cplusplus.Data.Structures.and.Algorithm.Design.Principles.... ... paradigms, such as the greedy approach and the divide-and-conquer approach, which are used to solve a large variety of ... , Heaps, and Graphs Hash Tables and Bloom Filters Divide and Conquer Greedy Algorithms Graph Algorithms I Graph Algorithms II Dynamic ...
  • 归并排序merge_sort模板 归并排序(MERGE-SORT)是建立在归并操作上的一种有效的排序算法,该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为二路归并。归并排序是一种稳定的排序方法。
  • 归并排序算法.docx 归并排序(MERGE-SORT)是建立在归并操作上的一种有效的排序算法,该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为二路归并。归并排序是一种稳定的排序方法。
  • 数据结构与算法.xmind ... 回溯算法 n皇后问题 动态规划Dynamic Planning 应用 求最长公共子序列LCS 矩阵连乘问题 爬楼梯问题 找零问题 0-1背包问题 分治算法Divide and Conquer 应用:归并排序 其它 Rabin fingerprints 文件指纹算法 BitMap 位图算法 BloomFilter 布隆过滤器 线性表 栈 先进后出(LIFO, Last In First Out) 实现 用两个 ...
  • java实现快速排序算法 快速排序算法是基于分治策略的另一个排序算法。其基本思想是:对输入的子数组a[p:r],按以下三个步骤进行排序。 1) 分解(Divide)(2) 递归求解(Conquer)(3) 合并(Merge)