Welcome![Sign In][Sign Up]
Location:
Search - quicksort

Search list

[JSP/Javaquicksort

Description: Quicksort implementation
Platform: | Size: 1024 | Author: Meera | Hits:

[Data structsQuickSort

Description: 快速排序算法的代码,C语言编写,比较简单,不过思考要多一点-quicksort code,writtten by C language
Platform: | Size: 1024 | Author: 叶子 | Hits:

[STLquicksort

Description: 快速算法的通用形式,它适用于任何形式的数据类型,是通用程序-the common style of quicksort
Platform: | Size: 38912 | Author: 张颖 | Hits:

[Data structsQuickSort

Description: 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort in C/C++
Platform: | Size: 1024 | Author: congyi | Hits:

[Data structsquicksort

Description: 快速排序,算法。关于算法分析的一个小程序:快速排序。-quicksort,arithmetic study,sort
Platform: | Size: 160768 | Author: 林建 | Hits:

[MPIquicksort

Description: MPI快速排序C代码,并行编程,快速排序,并行编程-quicksort program
Platform: | Size: 2048 | Author: Li Yingjia | Hits:

[JSP/Javaquicksort

Description: El ordenamiento rápido (quicksort en inglés) es un algoritmo creado por el científico británico en computación C. A. R. Hoare basado en la técnica de divide y vencerás, que permite, en promedio, ordenar n elementos en un tiempo proporcional a n log n.
Platform: | Size: 2048 | Author: yukujeeka | Hits:

[CSharpquicksort

Description: 数据结构树的快速排序算法功能实现,主程序main,调用函数quicksort-Quicksort algorithm for data structure tree functions, the main program main function is called quicksort
Platform: | Size: 1024 | Author: 范范 | Hits:

[Data structsQuickSort

Description: 步骤:设有一待排序的序列 1、分别设置low、high指向序列的最左端、最右端;从序列中选一个进行排序(通常选最左端的值low指向的值),存入到tmp; 2、从high端开始,查找比tmp小的,找到后将该值放入到low指向的存储位中;同时将high指向当前查到的值所在的位; 3、从low端开始,查找比tmp大的,找到后将该值放入到high指向的存储为中,同时low指向当前查到的值所在位; 4、若low位小于high位,返回步骤2;否则,将tmp值存入到空出来的low+1指向的位置,退出,返回low所在的位置position; 5、以position为界,将序列分成两部分,分别对两部分进行排序。-quick sort
Platform: | Size: 6144 | Author: 马艳娟 | Hits:

[CSharpquicksort

Description: 快速排序法(quick sort)是目前所公认最快的排序方法之一.它最容易理解,也最符合轴心分割与左右进行排序的概念,适合对初学者进行讲解-Quicksort method (quick sort) is now recognized as one of the fastest sorting method. Easiest to understand, is most consistent with the the axis divided left and right sort of concept to explain, suitable for beginners
Platform: | Size: 5120 | Author: 刘丹 | Hits:

[VC/MFCquickSort

Description: 课程设计项目,关于快速排序,实现多种快速排序,并进行对比。-Course design project, quicksort, to achieve a variety of quick sort and compare.
Platform: | Size: 4558848 | Author: lee | Hits:

[Algorithmquicksort

Description: It is a graphical representation of the famous quicksort . the program is in accordance to the algorithm described in Cormen.
Platform: | Size: 128000 | Author: amannith | Hits:

[OtherquickSort

Description: 一个快速排序的小程序,对新手理解快速排序很有帮助。欢迎新手下载-A small program of quicksort, quicksort helpful for the novice to understand. Welcome novice downloads
Platform: | Size: 842752 | Author: belinda | Hits:

[JSP/JavaQuicksort

Description: 将提供在源文件的的字符串用快速排序按照字典顺序进行排序。-Quicksort character sort lexicographically.
Platform: | Size: 1024 | Author: Steven | Hits:

[Printing programQuicksort

Description: 基于C++平台,快速排序,希望可以让大家更加透彻的理解快速排序功能-To quicksort feature based on C++ platform, quicksort, allows more thorough understanding
Platform: | Size: 188416 | Author: 王智 | Hits:

[OS programQuicksort

Description: 快速排序经典算法,官方经典快速排序算法,大家来看啊!-Quicksort classical algorithm,We look ah!
Platform: | Size: 1024 | Author: jys | Hits:

[ConsoleMergeSortL_AND-QuickSort

Description: MergeSortL_AND QuickSort,计算机算法设计与分析中的链表的归并排序算法和快速排序算法-MergeSortL_AND QuickSort, linked list merge sort algorithm in the design and analysis of computer algorithms, and fast sorting algorithm
Platform: | Size: 2424832 | Author: 陈乾福 | Hits:

[OtherQuicksort

Description: 快速排序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) { i=Slipt(a,low,high) QuickSort(a,low,i) QuickSort(a,i+1,high) } }
Platform: | Size: 1024 | Author: 張昕 | Hits:

[Data structsquicksort.rar

Description: 快速排序算法 实测通过 vs2010软件编写,Quicksort algorithm measured by vs2010
Platform: | Size: 2355200 | Author: wang | Hits:

[Otherquicksort

Description: 自己写的C语言标准快速排序,菜鸟一个,希望对初学者有所帮助。-Write your own C language standard quicksort, a rookie, I hope to help beginners.
Platform: | Size: 156672 | Author: dxy | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 34 »

CodeBus www.codebus.net