搜索资源列表
利用双向走动法改进冒泡排序算法C语言源代码
- 传统的冒泡排序法是这样操作:从前往后,依次比较两个相邻的元素,如果逆序则交换这两个元素值,然后继续往后操作;到了数据尾部时,就找出了一个最大值(或最小值)。然后重复上面的操作n-1次(n为元素个数)。相关的改进办法:按照上面的办法来操作的话,第一次扫描把最大数(或最小数)放到最后面的位置,第二次扫描时其实只需要扫描到倒数第二个位置就可以了,因为最后一个位置已经不需要判断了,以后的操作都是类似的。这样可以减小程序运行时间。-traditional Bubble Sort method is ope
标准库中的排序算法
- 标准库中的排序算法-standards for the Sort Algorithm
各种排序方法演示Java小程
- 各种排序方法演示Java小程-various sequencing methods demonstration Java -
快速排序法
- c++快速排序法-c rapid sequencing
各种排序
- 排序的几种算法,如快速排序,冒泡法,-Sort of several algorithms, such as quick sort, Bubble, etc.
常用排序算法
- 常用的几种排序算法-Sorting Algorithm
排序算法
- 里面有bidirbubblesort,Quicksort 等六种排序算法-bidirbubblesort inside, the six Quicksort algorithm
冒泡排序
- 冒泡排序
单链表排序输入n个数,用单链表
- 单链表排序输入n个数,用单链表(任意算法)对其进行排序并按从小到大顺序输出。 ,Single-linked list to sort n the number of input, using a single list (any algorithm) and sort them from small to large order of output.
arraysort
- 数组排序算法,这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法,-Array sorting algorithm, its head files include four sorting methods:bubble sorting method (bubble), insertion sorting method(insert
JSP 简易的排序查询功能
- 简易的图书管理系统,具有简易的排序查询功能-Simple library management system
javasort
- 演示各种排序方法的Java小程序-Demonstration of a variety of methods to sort of Java applet
javaparase
- 一个java源代码包,其中包括快速排序,队列和后缀表达式的计算,XML生成程序,为一个解析XML文件程序做了书价格的计算,是后缀表达式计算,中缀转后缀-A java source code package, including the quick sort, queue and the suffix for calculating expressions, XML generation process, a procedure to resolve XML document has done a
stringsort
- 一个可以对字符串进行选择排序和冒泡排序的小程序-A string can choose to sort and bubble sort of small programs
常见的七大排序算法Java实现
- 常见的七大排序算法,适用于初学者参考学习使用(Common seven sorting algorithm, for beginners reference, learning to use)
18几种排序
- 实现的主要功能是:对于几种排序算法的实现,所使用的语言是java语言。(The main function of the implementation is: for several sorting algorithm implementation, the language used is the Java language.)
合并排序
- 合并排序是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。合并排序法是将两个(或两个以上)有序表合并成一个新的有序表,即把待排序序列分为若干个子序列,每个子序列是有序的。然后再把有序子序列合并为整体有序序列。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。若将两个有序表合并成一个有序表,称为2-路归并。合并排序也叫归并排序。(Merge sort is an efficient sortin
排序sort8
- 内有经典的排序算法java实现、根据牛客网左大神的讲课自学完成。(It has a classic sorting algorithm, Java, which is completed according to the lecture of the big left God of Niu guest.)
Java 对象排序详解
- Java 对象排序详解 本文主要关注排序Collection的ArrayList、HashSet、TreeSet,以及最后但并非最不重要的数组。(Java object sort detailed solution This article focuses on the ArrayList, HashSet, TreeSet of the sort Collection, and the last but not the least important.)
排序
- 对给定的数据进行归并排序,并打印出排序的过程 对给定数据进行快速排序 对给定数据进行插入排序(The process of sorting the given data and printing the process of sorting. Fast sorting of given data Inserting the given data)