Location:
Search - qSort
Search list
Description: 实现qsort功能,实现qsort排序。
Platform: |
Size: 762440 |
Author: 宋辉 |
Hits:
Description: qsort快速排序算法
Platform: |
Size: 343 |
Author: jackfight |
Hits:
Description: 数组排序的经典程序shell。-Sorting an array of classic shell procedures.
Platform: |
Size: 1024 |
Author: 徐玉功 |
Hits:
Description: acm 做题和编程时常用的一些算法,自己总结的,主要有大数的运算,qsort函数,排序,等等。-acm title and programming to do when a number of commonly used algorithms, their summary, the main has large numbers of computing, qsort function, sort, and so on.
Platform: |
Size: 22528 |
Author: 杨一一 |
Hits:
Description: 实现qsort功能,实现qsort排序。-The realization of qsort functions qsort to sort.
Platform: |
Size: 762880 |
Author: 宋辉 |
Hits:
Description: 快速排序(qsort)在程序开发中的七种用法(VC)。其中列举了对int和char型数组排序、结构和类的一级二级排序等,具体的cmp函数。-Quicksort (qsort) in the development of seven Usage (VC). Which lists the type of int and char array to sort, structure and type of level 2 ranking, the specific function cmp.
Platform: |
Size: 27648 |
Author: sql |
Hits:
Description: 快速排序算法是基于分治策略的另一个排序算法。其基本思想是,对于输入的字数组a[p:r],按以下3个步骤进行排序:
(1)分解:以a[p]为基准元素将a[p:r]划分成3段a[p:q-1],a[q]和a[q+1:r],使得a[p:q-1]中任何元素小于等于a[q],a[q+1:r],中的任何元素大于等于a[q]。下标q在划分过程中确定
(2)递归求解:通过递归调用快速排序算法,分别对a[p:q-1]和a[q+1:r]进行排序
(3)合并:在a[p:q-1]和a[q+1:r]已经排好序的情况下,不需要执行任何运算,a[p:r]就已排好序
平均算法复杂度O(nlogn)-Quick sort algorithm is based on the sub-rule strategy to another sorting algorithm. The basic idea is that the word group for the importation of a [p: r], according to the following three steps to sort: (1) Decomposition: to a [p] as the base element would be a [p: r] is divided into 3 paragraphs a [p: q-1], a [q] and a [q+ 1: r], makes a [p: q-1] of any element less than or equal to a [q], a [q+ 1: r] , any element greater than or equal to a [q]. Subscript q in the demarcation process to determine (2) Recursive Solution: recursive call through the quick sort algorithm, respectively, of a [p: q-1] and a [q+ 1: r] sort (3) the merger: the a [p: q-1] and a [q+ 1: r] has lined up sequence of circumstances, do not need to perform any computation, a [p: r] has lined up an average sequence algorithm complexity O (nlogn)
Platform: |
Size: 1024 |
Author: 忠波 |
Hits:
Description: 可能是能找到的处理速度最快,处理能力最大的文本排序软件。软件里采用了如下技术加快排序速度和加大处理能力:
1.平衡二叉树排序;跳跃次数最少,路径最短;
2.重复字符串压缩存储;减少空间占用,也提高处理速度;
3.化零为整式申请内存,每次申请16M内存,减少了内存碎片,提高内存效率,同时也节省了内存申请所花的时间;
4.采用快速链接索引,可以快速跳到二叉树的分支;
5.含有按照通配符查找目录子目录所有文件的类,可快速排序整个目录和子目录的文本文件;
本软件用到C++诸多特征,是学习C++的好样板。
Platform: |
Size: 114688 |
Author: 叶一 |
Hits:
Description: windows.net下实现的QSort算法,可以正确使用,并放心下载-windows.net achieved under QSort algorithm, can be the proper use of, and rest assured Download
Platform: |
Size: 63488 |
Author: li dan |
Hits:
Description: 快速一维数组排列,使用qsort函数,可使用在大量一维数组的快速排列中-Fast one-dimensional array array, use the qsort function, can be used in a large number of one-dimensional array arranged in the rapid
Platform: |
Size: 2048 |
Author: 丁平 |
Hits:
Description: 本算法包括快速排序算法及快速排序的改进算法-The algorithm including the Quick Sort algorithm and Quick Sort Algorithm
Platform: |
Size: 2048 |
Author: tina |
Hits:
Description: 快速排序算法C实现。编译器使用的为dev C-Quick Sort Algorithm C to achieve. Compiler used for dev C
Platform: |
Size: 109568 |
Author: youname |
Hits:
Description: linux下Qsort的C语 言的实现 -linux under Qsort the realization of the C language
Platform: |
Size: 15360 |
Author: 王佐 |
Hits:
Description: 快速排序算法的深入对比分析与改进,难得的好文-Quick Sort Algorithm in-depth comparative analysis and improvement, a rare good text
Platform: |
Size: 762880 |
Author: ifelse |
Hits:
Description: 快速排序源代码,具有微软C标准库中qsort函数一样的接口,且速度奇快。-Quick sort source code,as microsoft c library qsort function interface,more more quick。
Platform: |
Size: 8192 |
Author: 小锤子 |
Hits:
Description: qsort的七种用法,方便大家一起学习使用-qsort
Platform: |
Size: 7168 |
Author: 王博 |
Hits:
Description: Qsort针对不同数据类型的用法,Qsort采用快排实现,比传统的sort更有效率-Qsort for the usage of different data types, Qsort exclusive use of quick implementation, more efficient than the traditional sort
Platform: |
Size: 36864 |
Author: Felix |
Hits:
Description: 快速排序的非递归算法,具有高效的特点,快速排序
-the nonrecursive code of quicksort
Platform: |
Size: 2048 |
Author: 刘可 |
Hits:
Description: 一个可以进行快速排序的程序,用STL中的qsort编写-A quick sort program can use STL in the preparation of qsort
Platform: |
Size: 76800 |
Author: 杜方 |
Hits:
Description: A simple QSort application.
Platform: |
Size: 2899968 |
Author: TheoXSD |
Hits: