搜索资源列表
利用双向走动法改进冒泡排序算法C语言源代码
- 传统的冒泡排序法是这样操作:从前往后,依次比较两个相邻的元素,如果逆序则交换这两个元素值,然后继续往后操作;到了数据尾部时,就找出了一个最大值(或最小值)。然后重复上面的操作n-1次(n为元素个数)。相关的改进办法:按照上面的办法来操作的话,第一次扫描把最大数(或最小数)放到最后面的位置,第二次扫描时其实只需要扫描到倒数第二个位置就可以了,因为最后一个位置已经不需要判断了,以后的操作都是类似的。这样可以减小程序运行时间。-traditional Bubble Sort method is ope
快速排序法
- c++快速排序法-c rapid sequencing
各种排序
- 排序的几种算法,如快速排序,冒泡法,-Sort of several algorithms, such as quick sort, Bubble, etc.
selectSort
- Java选择排序法,用来对数组的排序算法
oop
- 数组的详细排列,实现多个数的大小比较以及按照从大到小的排列方法,这实现了冒泡排序法 欢迎大家下载使用
arraysort
- 数组排序算法,这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法,-Array sorting algorithm, its head files include four sorting methods:bubble sorting method (bubble), insertion sorting method(insert
496511712_971104
- 這是一個很基礎的JAVA的泡沫排序法程式,請大家多多指教-This is a JAVA-based program of the bubble sort method, please all the exhibitions
sort
- 使用java寫的排序法demo包含radix sort和插入排序法-Using java to write the sort method demo contains the radix sort and Insertion Sort
sorting
- 使用java 寫成的排序法 包含氣泡排序和選擇排序法 有介面-Written using the java bubble sort method contains the sort order and selection of interface law
Sort
- 使用JAVA做出了快速排序法,程序语句简练,适合大家在写程序时当一个排序函数使用。-JAVA has made use of quick sort method, procedures and concise statement for all procedures in writing when the use of a sort function.
maopaopaixu
- flash 模拟冒泡排序法 运行 过程。-flash show the process of the program run.
heapsort
- 堆積排序法使用JAVA 自己寫的 請參考-Accumulation Sort wrote it myself, please refer to
injectionSort
- 数据结构"插入排序法",像是玩朴克一样,我们将牌分作两堆,每次从后面一堆的牌抽出最前端的牌,然后插入前面一堆牌的适当位置-Data structure, Insertion Sort. like playing Poker, we will license divided into two piles, each pile of cards from the back out of the front of the card, then insert the appropriate place
bubbleSort
- 数据结构--气泡排序法. 排序时,最大的元素会如同气泡一样移至右端, 其利用比较相邻元素的方法,将大的元素交换至右端, 所以大的元素会不断的往右移动,直到适当的位置为止-Data Structure- Bubble Sort. the largest element will be the same as the bubbles move to the right end of its adjacent elements of comparative method, a large el
Quick_Sort
- 實現Quick_Sort的排序法,使用java來完成,非常的實用-Achieve Quick_Sort sort method, using java to do, very practical
sort
- java中的数据排序法用法实例解析,及时间复杂度,空间复杂度相关介绍。-The data sort java example usage analysis, and time complexity, space complexity related presentations.
ArraySort
- 用选择排序法对数组中的数据进行升序排序。-Select the Sort method with the data in the array in ascending order.
student-system
- 本系统是个学生成绩管理系统 有如下功能: 1.用顺序表n个学生的学号和成绩录入; 思想: 在主函数里完成学生人数限定,和定义学生的结构体指针,调用录入函数。 用结构体指针完成学生信息录入。 2.用选择排序法对n个学生的成绩按照降序排列; 思想: 定义2个学生结构体指针,用选择法完成学生成绩排序。 3.利用栈和队列的算法操作,删除不及格的学生信息,保留及格学生信息在栈或队列中; 思想: 定义一
ArraylistComparator
- java的arraylist集合的自定义排序法。绝对经典-Java arraylist set custom ranking. Absolute classic
合并排序
- 合并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。合并排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为2-路归并。合并排序也叫归并排序。(Merge sort is an efficient sortin