搜索资源列表
冒泡排序;快速排序;归并排序(C语言).rar
- 冒泡排序;快速排序;归并排序(C语言) (包括程序文档)
快速傅利叶变换 C 语言源代码 17K
- 建立快速傅利叶变换 C 语言源代码 17K-establish Fast Fourier Transform C language source code 24K
快速三次平滑源码
- 快速三次平滑滤波算法为工程人员在对数据进行滤波时提供极大的方便-three rapid smoothing filter algorithm works in the data filtering provides great convenience
快速沃什变换源码
- 快速沃什变换源码提供了数字信号变换方法的C程序实现,并有例子应用。-rapid transformation source providing a digital signal conversion of the C program, and application examples.
归并分类与快速分类平均时间之比较的源代码
- 在对本程序的快速排序和归并排序这两种算法的正确与否进行验证时,用手动输入的数据,本程序基本上完成了对输入数据进行的快速排序和归并排序!-in the process of the rapid sequencing and merging the two sorting algorithms are correct for the test, with the manual input of data, the procedure is basically completed the data e
递归算法快速排序
- 分而治之方法还可以用于实现另一种完全不同的排序方法,这种排序法称为快速排序(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
冒泡、快速排序算法比较程序
- 数据结构课程设计:冒泡、快速排序的比较,用C语言编写,调试成功-curriculum design data structure : Bubble, rapid sequencing of comparison, the C language, debugging success
快速傅立叶变换数值实验
- 这是用C语言编写的数值计算里面快速傅立叶变换的计算程序-This is the C language prepared by the numerical fast Fourier transform inside the computational procedures
cfastsort快速排序
- 使用VB的快速排序算法-use VB Quick Sort Algorithm
mysort快速排序和冒泡排序
- 快速排序和冒泡排序-rapid sequencing and Bubble Sort
快速排序算法
- 快速排序算法,很好用,用c++编,拷贝在文本里,大家可以参考参考哦.-quick sort algorithm is useful, with c writers, copy in the text, one can refer to Reference oh.
任意2的幂次方长度数据快速dct
- 一般的快速DCT算法只有8点和16点的,我这里提供任意长度(2的幂次方)的DCT快速算法原代码-general fast DCT algorithm only 8:00 and 16:00, and here I am of arbitrary length (two of the power law) DCT fast algorithm source code
快速排序和冒泡排序
- 快速排序和冒泡排序-rapid sequencing and Bubble Sort
字符的快速排序算法
- 字符的快速排序算法.zip-characters quicksort algorithm. Zip
fast ica 快速盲源分离
- 快速ica算法
quick sort 快速排序的迭代实现
- 快速排序的迭代实现,不是递归的,递归的比较容易实现,迭代实现起来比较困难
快速排序算法
- 1. 要求按快速排序原理实现非减序排序; 2. 待排数据可键盘输入,也可读文本文件输入; 3. 键盘输入时待排数据个数由输入确定,文件输入时数据格式如下所示; 4. 排序时不能移动数据; 5. 要求显示排序结果。 输入数据的文本文件格式:第1行为数据个数,第2行开始每行一个数据。 如:data.txt 14 19.4 30.43 26.88 7.62 有14行 ┋ 12.7 21.9
快速排序
- 选取一个关键码key,一趟排序将要排序的数据分割成独立的两部分,key前的元素都小于key, 靠后的都大于key, 然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。(Select a key key, the two part of a sort to sort the data into independent, key elements are less than key, later than key, then according t
快速排序算法
- 通过快速排序算法,将随机生成的1000个数排序(Through the quick sorting algorithm, the random generated 1000 numbers sort)
快速非局部均值
- 快速非局部均值降噪算法。比较传统的速度更快,是基于论文《a non-local algorithm for image denoising》实现的(Fast non local means denoising algorithm.)