搜索资源列表
20050305182157_quicksort
- 快速排序算法。生成10个随机数,显示在编辑框中,调用快速排序函数,对前10 个编辑框中的数字进行排序。-quicksort algorithm. Generate 10 random numbers show that, in the edit box, called Quick Sort function, right before the 10 box editing the figures for the ranking.
Sort
- 1. 直接插入排序 2. 折半插入排序 3. 希尔排序 4. 起泡排序 5. 快速排序 6. 选择排序 7. 堆排序-1. Direct insertion sort 2. Binary insertion sort 3. Shell sort 4. Bubble sort 5. Quicksort 6. Sorted by 7. Heap Sort
quicksort
- quicksort quicksort
quicksort
- A quick sort source code using Naim & Sabbir s method.
sorting_algorithms
- some sorting algorithms, Quicksort, heapsort, etc
quicksort
- 快速排序,实现输入序列的快速排序,简单易学,适合初学者-Quick sort, quick sort the input sequence, easy to learn for beginners
sorting-algorithm
- Sorting algorithms: Heapsort, Mergesort and Quicksort.
38-quicksort
- Quick sort presentation
kuaisupaixu
- 快速排序问题的代码,考试必考的内容,也是计算机领域很经典的一个问题-Quicksort code, examination and tests of the contents, but also a classic computer field
sortmain
- 直接顺序排序、希尔排序、起泡排序、快速排序一次划分、快速排序、简单选择排序等-Direct sequence sort, shell sort, bubble sort, quicksort divided quicksort simple selection sort
nlogn_sorts
- This file contains nlogn sorts quicksort and mergesort implemented in python. Very useful for students and those who want to better understand real examples of these nlogn sorts.
inplace_sorts
- This file contains flagsort and a recursive quicksort implemented in python. Very useful for those who cannot find actual code outside of pseudocode.
quicksort
- 基数排序,快速排序函数代码,内含有详细介绍-Radix sort, quick sort function code, which contains a detailed descr iption
QuickSort
- 快速排序之所比较快,因为相比冒泡排序,每次交换是跳跃式的。每次排序的时候设置一个基准点,将小于等于基准点的数全部放到基准点的左边,将大于等于基准点的数全部放到基准点的右边。这样在每次交换的时候就不会像冒泡排序一样每次只能在相邻的数之间进行交换,交换的距离就大的多了。因此总的比较和交换次数就少了,速度自然就提高了。-Quick sort of the relatively fast, as compared to bubble sort, each exchange is leaps and bo
Quicksort
- QuickSort 快速排序算法 重要的排序算法之一-QuickSort important sort idea in cs
HQSort
- QuickSort with MPI and not open mp file . it has document.
Quicksort-and-binary-search
- 实现了快速排序和二分查找算法,经典简单,并有测试截图-Quicksort and binary search algorithm
ParallelQuickSort
- parallel quicksort algorithm and implimentation
QuickSort
- 这个文件是一个基于java的quicksort(QuickSort based on java)