搜索资源列表
KSPX
- 快速排序的基本算法-basic Quick Sort Algorithm
数组排序算法改进版
- 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 dinimicky_hu对原程序做了修改和优化,使用了函数指针数组,并修改了一个BUG-The head file of this programme includes 4 methods of sorting : Bublle sorting,insertion sortin
完全实现快速排序算法
- 完全实现快速排序又称分区交换排序法 在待排序文件中任取一个元素(例如第一个元素),以该元素为标准,将所有元素分为二部分:所有小于该元素的集合,所有大于等于该元素的集合。 将该元素放在二部分中间 利用递归原理,分别对每部分进行排序-Fast sort algrithms
找第k小算法程序
- 此代码查找序列中指定第几大小的程序,这将会在快速排序异步并行算法中用到。-this code sequence you specify the size of several of its procedures, which will be in the fast asynchronous parallel sorting algorithm used.
快排
- 快速排序 算法的基本思想: 快速排序的基本思想是基于分治策略的。对于输入的子序列ap..ar,如果规模足够小则直接进行排序,否则分三步处理 -fast algorithm basic idea : Quick Sort The basic idea is based on the divide and conquer strategy. For input sequences ap .. ar, if the scale is small enough for dire
Quicksort
- 实验4:快速排序的设计 1、实验目的:掌握快速排序基本方法和过程。 2、实验要求:采用快速排序方法对输入的数据按升序和降序两种顺序进行排序,并显示中间排序的过程。 注意!所有实验要求先写出算法的思路、算法及程序;实验室上机时只是上机调试!每个实验一份实验报告。
ya
- 快速排序的算法和程序以及一些其他-quicksort algorithm and procedures, and some other
快速排序、插入排序和选择排序
- 数据结构的快速排序、插入排序和选择排序程序设计算法实现的源代码,请大家多多指教。-rapid data structure, in order of ranking and selection inserted Sorting Algorithm design of the source code, please exhibitions.
排序算法效率比较
- 分别实现选择排序,插入排序,归并排序,快速排序,分析他们的时间复杂度,并用程序统计他们实际运行的时间(随机产生20000个数),有简单界面。
Quick-Sort
- 用快速排序的算法实现的排序功能的程序,里面进行的快速排序算法与递归的融合,是算法中的经典-Quick Sort algorithm using the sort function procedures, which carry out fast sorting algorithm with recursive fusion algorithm is a classic
select
- 数据结构中,进行快速排序的算法,以及各种排序算法的实现。-Data structure for fast sorting algorithm, and a variety of sorting algorithms.
kuaisupaixu
- 使用快速排序的算法实现对数据的重新排序操作-Use quick sort algorithm for data reordering operation
QuickSort
- 使用c语言进行快速排序的算法实现,代码简单,易于理解-The use of C language for the quick sort algorithm, the code is simple, easy to understand
qsort
- 比较优化的方式 实现传统的快速排序的方法(//The fllowing code implements the quick sort algorithm //)
Quickp
- LINUX系统下的快速排序算法的MPI实现(MPI implementation of fast sorting algorithm)
快速排序
- 快速排序,主要是代码实现,这是我上算法课的时候自己编写的,有些缺陷请原谅(quicksort,this is a easy test.i ues it to sort a easy array.)
部分排序算法(C语言版)
- 部分常用排序算法的代码实现 如冒泡排序,快速排序等(Code implementation of some commonly used sorting algorithms)
%5B啊哈!算法%5D.啊哈磊.扫描版
- 啊哈算法的pdf版,特别形象的算法书籍,其中的快速排序,桶排序简单明了(pdf version of aha algorithm)
内部排序比较
- 比较几种内部排序算法的效率,排序算法有插入排序、希尔排序、冒泡排序、快速排序、选择排序。(Comparing the efficiency of several internal sorting algorithms, the efficiency of several internal sorting algorithms is compared. The sorting algorithms include the insertion sort, the Hill sort, the bub
SimpleTestPaiXu
- 快速排序算法,选取一个中间值,小于中间值放左边,大于中间值的放右边(quick_sort:Select an intermediate value, less than the middle value to the left, greater than the median value to the right)