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

Search list

[Data structssixsortmethods

Description: 数据结构中的排序方法,包括:希尔排序,非递归的快速排序,递归的快速排序,堆排序,归并排序,基数排序-Sort of data structure, including: Hill sorted, non-recursive quicksort, recursive Quick Sort, Heap Sort, Merge Sort, Radix Sort
Platform: | Size: 2048 | Author: 大湖 | Hits:

[Windows DevelopQuickSort

Description: 快速排序法,基于分治策略的一个排序算法 3个步骤1分解,2递归求解,3合并 使用随机划分挑选哨兵,期望划分较对称-Quick Sort law governing strategy based on a sorting algorithm 3 Step 1 decomposition, 2 Recursive Solution, 3 combined divided randomly selected sentinel to expect a more symmetrical division
Platform: | Size: 1024 | Author: waterfly | Hits:

[Windows Developquicksort

Description: 用非递归实现快速排序 主要思想: 利用栈来消除递归-Non-recursive quicksort implementation the main idea: to eliminate the use of recursive stack
Platform: | Size: 11264 | Author: weixiaoguoke | Hits:

[Consolequicksort

Description: 通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Trip will be sorted by sorting the data is separated into two independent parts, a part of all of the data than another to be a small part of all of the data, and then part of the data here are two methods for rapid sorting, the sorting process can be recursive carried out in order to achieve the data into an orderly sequence.
Platform: | Size: 1024 | Author: 马值 | Hits:

[OtherQuicksort

Description: 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. Its basic idea is: The trip sorts will want to sort the data split into two independent parts, one part of the part of all of the data than all other data should be small, then part of the data here are two methods for rapid sorting, the sorting process can be recursive, thus achieving the data into an orderly sequence.
Platform: | Size: 3072 | Author: 郑阳 | Hits:

[OtherQuicksort

Description: 快速排序算法基本思想 通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。一般设置数组的第一个数为需要比较的值,把整个数组分为小于和大于该数的两部分。 我自己在写这个算法的时候,卡住了好几回,总是边界值出现问题。下面的这个实现加入了注释,希望对你能够有所帮助。-Basic idea of quick sort algorithm to sort through the trip sort of data will be separated into two independent parts, a part of all of the data than another to be a small part of all of the data, and then part of the data here are two methods for rapid sequencing , the sorting process can be recursive, thus achieving the data into an orderly sequence. The first general set of the array for the need to compare the number of values, the entire array is divided into less than and greater than the number of two parts. I write this algorithm in time, stuck several times, always boundary value problems. The following comments added to this realization, I hope you can help.
Platform: | Size: 5120 | Author: 郑阳 | Hits:

[Other systemstailrecursiveQuicksort

Description: quicksort with tail recursive
Platform: | Size: 1024 | Author: hwiparam | Hits:

[Data structsQuicksort

Description: 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. The basic idea is: sort through the trip sort of data to be split into two independent parts, a part of any data other than the part of all data to be small, then these two methods of data here are fast sorting, the sorting process can be recursive, thus achieving the data into an orderly sequence.
Platform: | Size: 1024 | Author: 浩星无恨 | Hits:

[Mathimatics-Numerical algorithmsquicksort

Description: 快速排序[非递归]算法 by buptwugh-Quick sort [non-recursive] algorithm made by buptwugh
Platform: | Size: 2048 | Author: 吴国华 | Hits:

[Data structsfailure_tree_sort-(2)

Description: 快速排序的非递归算法,极大地提高了排序算法的效率-Non-recursive quicksort algorithm, which greatly improves the efficiency of sorting algorithms
Platform: | Size: 579584 | Author: 张波 | Hits:

[Data structsQuickSort

Description: 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick sort (Quicksort) is a bubble sort of an improvement. By the CAR Hoare in 1962. The basic idea is: a trip to sort through the data to be sorted is divided into two independent parts, one part of the part of all of the data than the other, all data should be small, and then part of the data here are two methods for rapid sorting, the sorting process can be recursive in order to achieve the data into an orderly sequence.
Platform: | Size: 8192 | Author: 杨金 | Hits:

[JSP/JavaQuickSort

Description: 快速排序,递归,不稳定的排序,栈会不溢出,可运行大数量的排序-Quick sort, recursive, an unstable sort, the stack will not overflow, you can run a large number of sorting
Platform: | Size: 1024 | Author: 映雪 | Hits:

[JSP/JavaEx5-QuicksortConcorrenteDecomposicaoRecursiva

Description: Concurrent and recursive quicksort.
Platform: | Size: 53248 | Author: Bocato | Hits:

[Data structsQuicksort

Description: 快速排序算法的实现的源码,递归的调用过程-Quick sort algorithm source code, a recursive call
Platform: | Size: 1509376 | Author: 罗帆 | Hits:

[Data structsQuickSort

Description: 快排算法,基于分治策略,递归实现,适合数据结构的初学者研究。-Fast row algorithm based on divide and conquer strategies, recursive implementation, suitable for beginners study of data structures.
Platform: | Size: 925696 | Author: | Hits:

[Software Engineeringinplace_sorts

Description: This file contains flagsort and a recursive quicksort implemented in python. Very useful for those who cannot find actual code outside of pseudocode.
Platform: | Size: 1024 | Author: jimmymyman | Hits:

[Otherquicksort

Description: 利用c++语言并采用递归的方法编写的快速分类法,程序思路清晰,易懂。-Using c++ language and a recursive method to preparate the rapid classification, the procedures are clear and it is easy to understand.
Platform: | Size: 1024 | Author: wengfenghua | Hits:

[Otherqsort

Description: 分治递归实现的快速排序算法 时间复杂度nlogn -Divide and conquer recursive quicksort algorithm time complexity nlogn
Platform: | Size: 20480 | Author: huhao | Hits:

[ConsoleQuickSort

Description: 在VS 2008中,用C语言写的快速排序算法。不用多余的数组,直接对原数组进行排序。在递归调用中,对于【数组组就是数组首地址】的理解会更加通透。-In VS 2008, using C language to write quick sort algorithm. No extra array directly to the original array to be sorted. In the recursive call, the group is the first address of the array [array] of understanding will be more transparent.
Platform: | Size: 989184 | Author: 贾立伟 | Hits:

[Otherquicksort

Description: 对输入的几个数进行递归的快速排序 对冒泡程序的改进- use recursive to quick sort some number
Platform: | Size: 1024 | Author: Tim | Hits:
« 12 »

CodeBus www.codebus.net