搜索资源列表
数组排序算法改进版
- 这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 dinimicky_hu对原程序做了修改和优化,使用了函数指针数组,并修改了一个BUG-The head file of this programme includes 4 methods of sorting : Bublle sorting,insertion sortin
完全实现快速排序算法
- 完全实现快速排序又称分区交换排序法 在待排序文件中任取一个元素(例如第一个元素),以该元素为标准,将所有元素分为二部分:所有小于该元素的集合,所有大于等于该元素的集合。 将该元素放在二部分中间 利用递归原理,分别对每部分进行排序-Fast sort algrithms
插入算法完整实现
- 该程序关键在于Shell sort的实现: 缩小增量排序法 取整数d1,将所有距离为d1的倍数的元素为1组,在各组内排序。(每组内部插入排序) 取d2<d1,同样排序 依次下去,直到di=1-Sort algrithms of insertion method.
堆栈排序法
- 如果云知道天的辽阔 如果雨知道海的无边 如果星知道月的寂廖 如果你知道我爱着你 -know if the cloud of days of rain to know if the vast sea of limitless If Star know the lonely Liao if you know that I love you
快速排序法1
- 如果云知道天的辽阔 如果雨知道海的无边 如果星知道月的寂廖 如果你知-know if the cloud of days of rain to know if the vast sea of limitless If Star on the lonely know if you know Liao
排序法
- 该程序详细解读了各种的排序方法的原理对初学者非常有帮助-the procedures detailed explication of the various methods of sorting principle to be very helpful to beginners
qicsort
- 一个写在vc中的快速排序法函数,没有单独做测试类,而是在main函数中给出了例子,运行最后会在控制台看到结果。-a vc wrote in the rapid sequencing function, so there is no single test categories, but in main function is an example of the operation will finally see the result console.
绿叶Java
- 很好的多种类的排序法,可以一次性排序海量的数据.对学习数据的人有很大的帮助. -good type of ranking, can a one-time sorting large amounts of data. data for the study will be very helpful.
testbubble
- 冒泡排序法 (C++) 求链表操作 srasedfeadfeafds-Bubble Sort (C) List for operation srasedfeadfeafds
数据结构各种排序的比较
- 各种排序法的比较:利用数据结构各种算法,实现的算法比较,C++版-Comparisons of different sorting methods :use different algorithms in data structure to compare their efficiency .
Sort
- 用C#自动演示了冒泡排序法(原创),帮助初学者理解冒泡排序法,开发者学习C#-C# automatically used to demonstrate bubble sort method (original), to help beginners understand the Bubble Sort method, developers learn C#
dahuimopaixu
- 1、冒泡排序法2、快速排序法3、多个排序算法性能比较的方法 -paishu
Ktongfa
- 著名的大数量的排序算法--K桶排序法~在数据文本式的大数据排序时,K桶法会是一个不错的选择! k桶法:k桶法有两个主要步骤:分桶,整合。 分桶:把n个数依次放入k个桶中,除了第k个桶外,放入前k 1个桶中的数都要求后一个大于 前一个。分桶的具体规则如下: 第1个数放入第一个桶内,第2个数若大于第一个桶中的数(即第一个数)则放入第一个桶内, 否则放入第二桶内,以此类推。设现要将第j个数放入某桶中,先从第一个桶试起,若第j个 数大于当前第一个桶中最
Choice ranking method
- 三种选择排序法,每一趟在n-i+1(i=1,2,…n-1)个记录中选取关键字最小的记录作为有序序列中第i个记录(Three alternative sorting methods, each in n-i+1 (i=1, 2),... (n-1) the minimum record of the keyword selected in the record is used as the I record in the ordered sequence)
5码排序
- 对彩票号码的排序筛选,适用于5码彩票玩法(Sort and select lottery numbers)
insertionSort
- 有一个已经有序的数据序列,要求在这个已经排好的数据序列中插入一个数,但要求插入后此数据序列仍然有序,这个时候就要用到一种新的排序方法--插入排序法,插入排序的基本操作就是将一个数据插入到已经排好序的有序数据中,从而得到一个新的、个数加一的有序数据(There is a sequence of data has been ordered, required in this row of data sequence has good to insert a number of requirement
数字排序
- 对10个数进行排序?1.程序分析:可以利用选择法,即从后9个比较过程中,选择一个最小的与第一个元素交换,??????? 下次类推,即用第二个元素与后8个进行比较,并进行交换。?(The number 10 ranking 1. program analysis: can use the selection method, from 9 months after the comparison process, select a minimum exchange with the first
冒泡排序法
- 不限数字个数且使用函数的冒泡排序法,供交流学习使用。(Bubble sorting method without limitation of quantities of inputs.)
冒泡法
- 该冒泡算法是通过C语言编写的,可以实现对数字和字母的排序(The bubble algorithm is written in the C language and can be used to sort numbers and letters.)
sort_insert_quick
- 编着玩的,插入排序和快速排序法。当遇到的数据比较多时,建议使用快速排序法。(Just for fun,insert sort and quick sort.)