Welcome![Sign In][Sign Up]
Location:
Search - bubble sorting

Search list

[JSP/Javaarraysort

Description: 数组排序算法,这个程序的头文件中包含四种排序方法:泡沫排序法(bubble),插入排序法(insertion),快速排序法(quick)和选择排序法(selection)。头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法--Array sorting algorithm, its head files include four sorting methods:bubble sorting method (bubble), insertion sorting method(insertion), quickly sorting method (quick) and selection sorting method (selection). In head files has also used the template technology to realize several kinds of sorting algorithms at the same time.
Platform: | Size: 454656 | Author: 站长 | Hits:

[Windows Developdwqdsort111

Description: 1)实现以下常用的内部排序算法并对它们的时间效率进行比较: 必做(6种):起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序; 选做:折半插入、二路归并、基数排序等等; 2)函数首部要求:void XXXXSort(char **list, int len, int n, int *c, int *s) 其中: a) XXXXSort为排序函数名,具体如下: 起泡排序BubbleSort 直接插入排序InsertSort 简单选择排序SelectSort 快速排序QuickSort 希尔排序ShellSort 堆排序HeapSort 折半插入BInsertSort 二路归并Merge2Sort 基数排序RadixSort b) list为二维字符数组的头指针,该二维数组的规格为:char list[n][len] 每行用于存放一个字符串(最大长度为len-1),共n行; c) c用于返回关键字比较次数; d) s用于返回移动次数; 3)要求把各种排序函数做成函数库(文件名统一为:sort.c),用统一提供的主程序进行调用和测评。 -a) achieve the following commonly used internal sorting algorithm as well as their time efficiency comparison : regimen (6) : bubble sort, direct insertion sequence and simple choice sorting, quick sort, Hill, ranked Heap Sort; elected to do : half of insertion, two-way merge. Sort base, and so on; 2) function first requirement : void XXXXSort (char** list, int len, int n, int* c, int* s) which : a) XXXXSort sort of a function name, as follows : bubble sort BubbleSort direct insertion sort InsertSort simple choice ranking Sele ctSort Quick Sort QuickSort Hill Sorting ShellSort Heap Sort HeapS ort half insert BInsertSort two-way merge Merge2Sort radix sort Radi xSort b) list for the two-dimensional array of characters in the first indicator, the two-dimensional array specifications : cha
Platform: | Size: 10240 | Author: 战天 | Hits:

[MPIbubblesort

Description: Bubble Sorting using MPI libraries
Platform: | Size: 1024 | Author: Chitra | Hits:

[Data structsBubble-Sort

Description: its about the bubble sorting.
Platform: | Size: 9216 | Author: Ahmed Dildar | Hits:

[VHDL-FPGA-Verilogbubblesort1024ram

Description: 快速冒泡排序基于FPGA实现,有测试文件以及设计图,实现1024*32位数序的多数排序,突破传统是的REG类型少数排序,利用RAM,针对RAM中的无序数的地址调换,达到排序目的,仅供学习交流-Rapid bubble sort based on FPGA, there are test documents and design drawings to achieve 1024* 32-digit sequence of the majority of sorting, breaking tradition is a REG types of minority sorting, the use of RAM, the disorder for the RAM address of the number of exchange, to sort purpose, only to learn the exchange of.
Platform: | Size: 5120 | Author: 柳泽明 | Hits:

[Othersorting

Description: Bubble-sorting hardware implemented using Verilog
Platform: | Size: 314368 | Author: viet | Hits:

[Othersorting

Description: 排序程序,冒泡、优化冒泡、选择、插入 适合初学者-bubble sorting,optibubble sorting, selection sorting,insertion sorting,for news learners
Platform: | Size: 177152 | Author: jiangmt | Hits:

[Data structsC++programs-bubble

Description: bubble sort in c++ for data vector sorting
Platform: | Size: 192512 | Author: bilal | Hits:

[Data structsbubble

Description: 本程序完成的功能是:利用冒泡法对输入的10个数字进行排序。-This program sorts the 10 inputed numbers using bubble sorting algorithm.
Platform: | Size: 4096 | Author: huifengliu | Hits:

[Data structsbubble-sorting

Description: 冒泡排序,是指计算机的一种排序方法,它的时间复杂度为O(n^2),虽然不及堆排序、快速排序的O(nlogn,底数为2),但是有两个优点:1.“编程复杂度”很低,很容易写出代码;2.具有稳定性,-bubble sorting in C/C++
Platform: | Size: 1024 | Author: congyi | Hits:

[CSharpc-program-for-bubble-sort

Description: c program for bubble sorting
Platform: | Size: 10240 | Author: ProSarajevo | Hits:

[Othersorting-algorithm

Description: 描述了4种简单的排序算法,包括选择排序,插入排序,冒泡排序和快速排序算法。-describe four sorting algorithm,include select sorting,insert sorting,bubble sorting and quick sorting.
Platform: | Size: 2048 | Author: 张建锋 | Hits:

[OtherBubble-sorting

Description: 基于VC6.0编写的冒泡法排序源程序,用到了数组-Based on VC6.0 prepared bubble sort method source code, used an array
Platform: | Size: 207872 | Author: Tom | Hits:

[Education soft systemBubble-sorting-function

Description: Bubble sorting function CODE Bubble sort is a simple sorting algorithm. The algorithm starts at the beginning of the data set. It compares the first two elements, and if the first is greater than the second, it swaps them. It continues doing this for each pair of adjacent elements to the end of the data set. It then starts again with the first two elements, repeating until no swaps have occurred on the last pass.[25] This algorithm s average and worst-case performance is O(n2), so it is rarely used to sort large, unordered data sets.
Platform: | Size: 47104 | Author: stoulod | Hits:

[Software Engineeringbubble

Description: code for bubble sorting
Platform: | Size: 1024 | Author: rohit sharma | Hits:

[OtherBubble

Description: 提供了冒泡排序和选择排序的C算法,并从耗时上对两种算法进行了比较(C algorithm for bubble sorting and selection sorting is provided, and the two algorithms are compared with time consuming)
Platform: | Size: 312320 | Author: 李查查 | Hits:

[OtherBubble Sort Alg

Description: bubble sort algorithm
Platform: | Size: 479232 | Author: mrcoa | Hits:

[Data structsBubble sort

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

[JSP/JavaBubble

Description: 用JAVA实现的冒泡排序,数据结构 ,算法(Bubble sorting, data structure, algorithm implemented with JAVA)
Platform: | Size: 1024 | Author: ssssssssssssss | Hits:

[Data structsbubble black

Description: 冒泡排序完整算法,对初学C++的人有很大的帮助,可以下载试试,值得一用·。(C language bubble sorting algorithm and code It's a great help to people who have learned C++)
Platform: | Size: 10240 | Author: 锦瑟初年 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 33 »

CodeBus www.codebus.net