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

Search list

[Documents插入排序(Inseretion Sort)

Description: 插入算法,英文叫作insertion sort-insertion algorithm, called the insertion sort English
Platform: | Size: 3072 | Author: 陈士 | Hits:

[Mathimatics-Numerical algorithmsJAVA_SORT

Description: java sort
Platform: | Size: 13312 | Author: 棝柫峅 | Hits:

[Mathimatics-Numerical algorithmsQuickSort_edwardversion

Description: 快速排序! 经典的算法。 provides methods to sort a set of objects with quicksort algorithm.-rapid sequencing! The classical algorithm. Provides methods to sort a set of objects with quicksort algorithm.
Platform: | Size: 1024 | Author: 李军 | Hits:

[Data structs各种排序比较

Description: 分别实现直接插入排序、冒泡排序、简单选择排序、希尔排序、快速排序、堆排序,并随机生成30个数,比较各算法的时、空性能和稳定性。-respectively direct insertion sort, bubble sort, simple choice, in order of ranking Hill, the quick sort, heap sort, and Random Number Generation 30, a comparison algorithm, the performance and stability of the air.
Platform: | Size: 342016 | Author: 李景良 | Hits:

[Othermerge

Description: 归并排序--c语言非第归-merging sort-- c-language section naturalization
Platform: | Size: 1024 | Author: | Hits:

[Data structsQUICK SORT

Description: 使用VC编写的快速排序算法,运行后输入你希望产生的次数,会随机产生数值,并完成排序,是一个教好理解快速排序算法的程序。-prepared by the use of VC quicksort algorithm, running after you input the desired number of randomly generated digits and completed sequencing, is a good understanding of the fast algorithm procedures.
Platform: | Size: 11264 | Author: 陶自权 | Hits:

[OS programsort_vector

Description: 此程序是排序,用了vector类,并封装了发泡,快速,插入和选择排序-ranking, with the vector categories, and the packaging foam, fast, and inserted SELECTION SORT
Platform: | Size: 28672 | Author: llg | Hits:

[Data structsssort

Description: 数据结构中的各种排序算法,包括快速排序,堆排序等。是经过精简的程序-data structure of the various sorting algorithms, including Quick Sort stacked ranking. Yes streamlined procedures
Platform: | Size: 2048 | Author: 戚玉涛 | Hits:

[Data structsquick_sort

Description: 快速排序,实现排序的时间再一般情况下的时间复杂性为nlogn算法实现-Quick Sort and achieve ranking period of time under normal circumstances the complexity of finite algorithm
Platform: | Size: 53248 | Author: hua | Hits:

[Data structs排序和查找

Description: 常用的数据结构排序和查找算法:简单选择排序,冒泡排序,折半插入排序,快速排序,堆排序 顺序查找,折半查找.-commonly used data structures sorting and searching algorithms : simple choice, in order of Bubble Sort, half insertion sort, rapid sequencing, Heap Sort sequence search, binary search.
Platform: | Size: 2048 | Author: | Hits:

[JSP/Java1MergeSort

Description: An implementation of merge sort.-merge sort.
Platform: | Size: 2048 | Author: 黄加斌 | Hits:

[Data structsquickSort3.12

Description: 内存映射,多线程快速排序,测试速度1000000/30s-memory mapping, multi-threaded quick sort, test speed 1000000/30s
Platform: | Size: 5764096 | Author: 王占亭 | Hits:

[Algorithmarraysort1

Description: 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。-this procedure the first document contains four sequencing methods : foam Sort (bubble), the insertion sort (insertion), rapid sequencing (quick) and choose Sort (selection). The first document also use the template technology, in order to simultaneously achieve several types of sorting algorithms.
Platform: | Size: 27648 | Author: chyg | Hits:

[Data structsshellsort111

Description: 附有本人超级详细解释(看不懂的面壁十天!) 一、 实际问题: 希尔排序(Shell Sort)是插入排序的一种。因D.L.Shell于1959年提出而得名。它又称“缩小增量分类法”,在时间效率上比插入、比较、冒泡等排序算法有了较大改进。能对无序序列按一定规律进行排序。 二、数学模型: 先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序;然后,取第二个增量d2<d1重复上述的分组和排序,直至所取的增量dt=1(dt<dt-l<…<d2<d1),即所有记录放在同一组中进行直接插入排序为止。该方法实质上是一种分组插入方法。 三、算法设计: 1、将相隔某个增量dlta[k]的元素构成一个子序列。在排序过程中,逐次减小这个增量,最后当h减到1时,进行一次插入排序,排序就完成。增量序列一般采用:dlta[k]=2t-k+1-1,其中t为排序趟数,1≤k≤t≤[log2 (n+1)],其中n为待排序序列的长度。按增量序列dlta[0..t-1]。 2、按增量dlta[k](1≤k≤t≤[log2 (n+1)])进行一趟希尔插入排序。 3、在主函数中控制程序执行流程。 4、时间复杂度:1≤k≤t≤[log2 (n+1)]时为O(n3/2)。 -with super detailed explanation (not read the Wall for 10 days!) A practical question : Sort Hill (Shell Sort) is inserted into a sort. By D. L. Shell made in 1959 and named after. It is also known as the "narrow incremental method" in the time-efficient than inserted, such as sorting algorithms and bubbling there has been a big improvement. The disorder can sequence by law must rank. Two mathematical models : first getting a less than n integers d1 as an increment. all documents should be recorded into d1 groups. All distance dl in multiples of record on the same group. In the first group for direct insertion sorting; Then, take a second increment d2
Platform: | Size: 19456 | Author: 乐乐 | Hits:

[Data structsQ_SORT

Description: 快速排序C++源码,已测试过-Quick Sort C source code, has tested.
Platform: | Size: 1024 | Author: 高振翔 | Hits:

[Static controlQUIKSORT

Description: 快速排序,动态生成数组,然后通过算法实现排序-Quick Sort, dynamic generation array, then sorting algorithm
Platform: | Size: 12288 | Author: 李飞 | Hits:

[JSP/JavaJava-sort

Description: Java各种排序算法代码,转载自-JAVA爱好者:http://www.javafan.net-Java various sorting algorithm code, reprinted from-JAVA lovers : http :// www.javafan.net
Platform: | Size: 11264 | Author: 阿木 | Hits:

[Data structsDEMO(sort)

Description: 实现各种内部排序。包括冒泡排序,直接插入排序,Shell排序,快速排序,堆排序,并比较排序的比较次数和移动次数。主要是C语言。-achieve internal order. Including bubble sort, direct insertion sort, Shell sort, quick sort, heap sort, and compare the ranking of number and mobile number. C is the main language.
Platform: | Size: 217088 | Author: 张某某 | Hits:

[Data structsChap8_ExtSort

Description: 本程序实现了败者树等外排序方式,封装性好,代码强壮-program of the master tree outer Sort, Packaging and good strong code
Platform: | Size: 292864 | Author: 14965a | Hits:

[Data structsJavaSortingMethod

Description: java 排序,冒泡排序,快速排序,选择排序,插入排序,堆排序,归并排序等等!-java ranking, bubble sort, quick sort, select Sort, insert sequencing, heap sort, merge sort, and so on!
Platform: | Size: 6144 | Author: 丁如敏 | Hits:
« 1 2 3 4 56 7 8 9 10 ... 50 »

CodeBus www.codebus.net