搜索资源列表
quicksort
- quicksort为一个利用quicksort找数值的方法,一个比较快的搜寻方法
quicksort.cpp
- quicksort的实现 三种写法,主要针对一些边界问题的优化
quicksort
- Quicksort algorithm in C++.
MPI_QuickSort.并行快速排序算法
- 并行快速排序算法,基于MPI 2.0 c语言实现,注释很清楚明确。,Parallel QuickSort base on MPI 2.0 in C language.
quicksort
- This code is an MPI version of the sorting algorithm QuickSort in c++. The partitioning step is meda sequantially, but the split and merge steps are made using Send and Recieve methods.
quicksort
- 用非递归实现快速排序 主要思想: 利用栈来消除递归-Non-recursive quicksort implementation the main idea: to eliminate the use of recursive stack
QuickSort
- 迭代快速排序,基本上按照算法书上的算法思想来实现的-Iterative Quicksort basically in accordance with the algorithm book thinking algorithm to achieve the
quickSort
- vc++2005编写的快速排序算法,将随机产生的一组数进行排序,学习参考一下,不错的.-vc++2005 prepared Quicksort algorithm, will be a group of randomly generated numbers sorting, refer to study, not bad at all.
Quicksort
- quicksort algorithm implementation
QuickSort
- quicksort自行取n個數,亂數排序,並檢視程序時間-quicksort to choose their own number n, random number sequencing, and view the program time
QuickSort
- 随机生成一组数据,然后用快速排序将生成的数据排序。时间复杂度是O(nLGn).-QuickSort
QuickSort
- 数据结构的应用之一 快速排序的实例与测试-The application data structure, one of the examples and test quicksort
Quicksort
- 快速排序 快速排序是一种在含n个数的输入数组上最坏情况运行时间为O(n*n)的算法。 -Quicksort
QuickSort.java
- quicksort implementation java, simple code
Quicksort
- 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. Its b
Quicksort
- 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. The b
QuickSort
- 快速排序的优化算法,在原来快速排序的基础上加入插入排序,使得算法的时间爱你复杂度变低。-QuickSort write in C++ it s the optimization of QuickSort
quicksort
- quicksort with threads
QuickSort
- 这个文件是一个基于java的quicksort(QuickSort based on java)
quicksort
- 快速排序(QuickSort)的基本思想和算法(Basic ideas and algorithms for fast sorting (QuickSort))