Welcome![Sign In][Sign Up]
Location:
Search - 冒泡排序

Search list

[Other冒泡排序的VHDL程序

Description: 这是一个用VHDL语言编写的冒泡排序的程序,内带仿真图片。使用Qutus II 软件打开。
Platform: | Size: 1498060 | Author: fangleng@126.com | Hits:

[VHDL-FPGA-Verilog基于 FPGA 实现的冒泡排序法范例

Description: 基于 FPGA 实现的冒泡排序法范例,Verilog 的语法.
Platform: | Size: 898 | Author: xyz543 | Hits:

[SourceCode冒泡排序算法

Description: 冒泡排序算法
Platform: | Size: 1045 | Author: 12976181@qq.com | Hits:

[Documents冒泡排序

Description: c语言排序-c language sort
Platform: | Size: 1024 | Author: daimi | Hits:

[Data structs数据结构中所用的8种排序方法

Description: 本程序集合了数据结构8种主要的排序方法:插入排序、冒泡排序、选择排序、快速排序、希尔排序、堆排序、归并排序、基数排序。-the procedures set of data structure of the eight major sequencing method : Insert ranking Bubble Sort, select, in order of Quick Sort, Hill sequencing, heap sort, merge, in order of ranking base.
Platform: | Size: 77824 | Author: 吴晓辉 | Hits:

[Mathimatics-Numerical algorithmsmysort快速排序和冒泡排序

Description: 快速排序和冒泡排序-rapid sequencing and Bubble Sort
Platform: | Size: 8192 | Author: 吕程 | Hits:

[Mathimatics-Numerical algorithms快速排序和冒泡排序

Description: 快速排序和冒泡排序-rapid sequencing and Bubble Sort
Platform: | Size: 9216 | 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:

[Data structs排序程序

Description: 利用C语言实现,8种排序算法! 例如:插入排序、快速排序、选择排序、冒泡排序、堆排序、希尔排序、归并排序、基数排序!-using C language, eight algorithm! For example : insert sequencing, Quick Sort, select, in order of Bubble Sort, heap sort, Hill sorting, merging, in order of ranking base!
Platform: | Size: 3072 | Author: 叶兆源 | Hits:

[Data structs排序算法汇总和比较

Description: 实现了插入排序,希尔排序, 冒泡排序,快速排序,选择排序,堆排序和归并排序,以及可以对排序的性能进行分析,较适合用作排序算法的学习-achieved insertion sort, Hill, in order Bubble Sort, quick sort, select, in order of ranking and sculpture merge sorting, and sequencing can analyze the performance and more appropriate for the learning algorithm
Platform: | Size: 1902592 | Author: 叶靥 | Hits:

[Documents利用双向走动法改进冒泡排序算法C语言源代码

Description: 传统的冒泡排序法是这样操作:从前往后,依次比较两个相邻的元素,如果逆序则交换这两个元素值,然后继续往后操作;到了数据尾部时,就找出了一个最大值(或最小值)。然后重复上面的操作n-1次(n为元素个数)。相关的改进办法:按照上面的办法来操作的话,第一次扫描把最大数(或最小数)放到最后面的位置,第二次扫描时其实只需要扫描到倒数第二个位置就可以了,因为最后一个位置已经不需要判断了,以后的操作都是类似的。这样可以减小程序运行时间。-traditional Bubble Sort method is operated : former next, followed by two more adjacent elements, if Roget will exchange value of the two elements, and then continue later operation; The tail of the data, it found a maximum (or minimum). Then repeat the operation of the above n-1 (n is the number of elements). The improvements : In accordance with the above approach to the operation of the first scanning the maximum (or minimum number) onto the surface of the final location of the second scan in fact only need to scan the penultimate position can be, a place for the final judgment has not come to the end of operation are similar. Such procedures can reduce the run time.
Platform: | Size: 4096 | Author: 张庚 | 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:

[Windows Develop021冒泡排序

Description: 实现一种排序的方法,使用C语言实现的冒泡排序。(To achieve a sort of method, using C language bubble sort.)
Platform: | Size: 425984 | Author: balance | Hits:

[Data structs冒泡排序

Description: 冒泡排序(Bubble Sort,台湾译为:泡沫排序或气泡排序)是一种简单的排序算法。它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。(Bubble sort (Bubble Sort, Taiwan: bubble sort or bubble sort) is a simple sorting algorithm. It repeats the sequence to sort, compares two elements at once, and exchanges them if their order is wrong. The work of the visiting sequence is repeated until there is no need for exchange, that is, the sequence has been sorted.)
Platform: | Size: 1982464 | Author: Somnus2018 | Hits:

[Data structs冒泡

Description: 冒泡排序算法,最简单的数据结构排序算法,希望大家喜欢(Bubble sort algorithm)
Platform: | Size: 1024 | Author: imba66 | Hits:

[Data structs查找排序

Description: 数据结构中顺序表的查找排序,包括冒泡排序、直接排序、简单选择排序、希尔排序、快速排序。(Sorting of sequential tables in data structures.include BubbleSort,InsertSort ,SelectSort,ShellSort,HeapSort,QuickSort.)
Platform: | Size: 2048 | Author: Tasdily | Hits:

[Other冒泡排序改进版

Description: 对冒泡排序进行改进。减少循环次数,降低算法复杂度(Improved bubble sort)
Platform: | Size: 707584 | Author: 周蛋宝 | Hits:

[Mathimatics-Numerical algorithmsT044冒泡排序

Description: poj编程练习题:实现冒泡排序的C程序源代码(Code for bubble sorting)
Platform: | Size: 177152 | Author: 花开默落 | Hits:

[Other冒泡排序C语言程序

Description: 冒泡排序C语言程序Bubble sort C language program(Bubble sort C language program)
Platform: | Size: 8192 | Author: 基拉大和 | Hits:

[Windows Develop冒泡排序法

Description: 不限数字个数且使用函数的冒泡排序法,供交流学习使用。(Bubble sorting method without limitation of quantities of inputs.)
Platform: | Size: 1024 | Author: Blanker | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net