搜索资源列表
递归算法快速排序
- 分而治之方法还可以用于实现另一种完全不同的排序方法,这种排序法称为快速排序(quick sort)。在这种方法中, n 个元素被分成三段(组):左段l e f t,右段r i g h t和中段m i d d l e。中段仅包含一个元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以独立排序,并且不必对l e f t和r i g h t的排序结果进行合并。m i d d l e中的元素被称为支点( p i v o t )。图1 4
part5
- 数据结构c++数据源代码,涵盖了基本的数据结构代码第五部分-Data structure c++ source code, covering the basic data structure code Part V
PolyArith
- 数据结构课程设计案例精编一书中,第五章多项式加法和乘法的源代码-Data Structure Course Design Case Short book, chapter V polynomial addition and multiplication of the source code
5
- 配合严蔚敏的数据结构的辅导书,内有书中程序的代码实现——高一凡所著的数据结构算法解析的第五章数组和广义表。-YAN Wei-Min with the data structure of the counseling book, there are procedures code book- written by high and one where the data structure parsing algorithm Chapter V array and generalized form.
matrixdriver
- now, how can i call kmeans function for h , s,v separately, what parameters to be passed. here h is 512*512 matrix.and how can i construct the clustered/segmented image from the kmeans result. need sample code in matlab its urgent. Please h
DBMM
- 单表密码 定义: 1、 明表: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2、 明文 they will arrive tomorrow 3、 密钥 K=Monday 4、 密码实现 1) 将明文与密钥转为数字串: K=(12,14,13,3,0,24)
code
- 2D cavity flow- without pressure- contour map for temperature, velocity in U and V direction.
a201702122
- 通常可以在任何图中使用,包括有向图、带负权边的图。 Floyd-Warshall 算法用来找出每对点之间的最短距离。它需要用邻接矩阵来储存边,这个算法通过考虑最佳子路径来得到最佳路径。 1.注意单独一条边的路径也不一定是最佳路径。 2.从任意一条单边路径开始。所有两点之间的距离是边的权,或者无穷大,如果两点之间没有边相连。 对于每一对顶点 u 和 v,看看是否存在一个顶点 w 使得从 u 到 w 再到 v 比己知的路径更短。如果是更新它。 3.不可思议的是,只要按