搜索资源列表
quicksort
- 快速排序的实现程序,具有详细的说明,是初学者实用的学习例子-Quick Sort realize procedures, with detailed instructions for beginners are studying practical examples
quicksort
- 实现快速排序 主要是采用指针的方式来随机产生大量数并排序-The realization of quick sort is the main way to target a large number of randomly generated number and sort
paixu
- 归并排序C++程序,快速排序C++程序,可在C++环境中实现的源代码-Merging Sort C++ Procedure quicksort C++ Procedures may C++ Environment source code
QuickSort
- 实现了快速排序,还不够20字啊,这怎么行呢 -none
kuaipai
- 快速排序算法是排序中相对来说比较好的算方法,大家可以看看啊 -Quicksort sorting algorithm is in relatively good balance method, we can look at ah Hehe
NumSort
- 用VC++实现快速排序,迭代的使用,函数中含有排序个数,可以自行修改-QuickSort
quicksort
- 快速 排序-Quick Sort
Quicksort
- 基于分治算法的快速排序。编程工具vc++6.0.时间复杂度O(nlogn)-Divide and Conquer Algorithm Quicksort
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
- A program to perform quicksort
quickSort
- 一个快速排序的小程序,对新手理解快速排序很有帮助。欢迎新手下载-A small program of quicksort, quicksort helpful for the novice to understand. Welcome novice downloads
Quicksort
- 快速排序void QuickSort(int a[], int low, int high) { int i if(low<high) { i=Slipt(a,low,high) QuickSort(a,low,i) QuickSort(a,i+1,high) } } -void QuickSort(int a[], int low, int high) { int i if(low<high)
quicksort
- 自己写的C语言标准快速排序,菜鸟一个,希望对初学者有所帮助。-Write your own C language standard quicksort, a rookie, I hope to help beginners.
quicksort
- 一个实现快速排序算法的小代码。输入任意数字进行快速排序-realize the quicksort
quicksort-omp
- 利用omp將quicksort達到平行化效果-Omp parallel use of the quicksort
quickSort
- 快速排序是由东尼·霍尔所发展的一种排序算法。在平均状况下,排序 n 个项目要Ο(n log n)次比较。在最坏状况下则需要Ο(n2)次比较,但这种状况并不常见。事实上,快速排序通常明显比其他Ο(n log n) 算法更快,因为它的内部循环(inner loop)可以在大部分的架构上很有效率地被实现出来。-Quicksort is developed by the East Ni Huoer a sorting algorithm. In the average case, sort n item
quicksort
- 用快排思想的c程序。输入为元素个数+元素序列。输出为排序后的结果。与其他类似的排序程序如,插入、选择等相比,实现效率更高。-This is a quicksort program to deal with scheduling problems, which is pretty faster than other methods.
QuickSort
- 快排算法QuickSort的C实现 算法高效-Fast algorithm of QuickSort C implementation Algorithm is highly efficient
quicksort
- 快速排序的实现,经过严格测试,代码能正常运行。-Quicksort implementation, after rigorous testing, code can be run properly.
QuickSort
- 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick Sort
