搜索资源列表
bucket
- 桶排序:A[1...n]是一个在合理的范围内的n个数的序列,例如1...m中所有的数,这里m是一个与n相比 不太大的数,这些数被放到k个桶中,第一个桶放1到[m/k]间的数,第2个桶放[m/k]+1到[2m/k]间的数,如此等等。之后将每个桶里的数用insertsort排序即可得到排好序的数组。-Bucket sort: A [1 ... n] is a reasonable range of the sequence of n numbers, for example, 1 ... m all
bucket-sort
- 实现桶排的算法,结合数据结构课本编写的测试程序-bucket sort
bucketSort
- (吊桶排序法)吊桶排序法源于一维正整数数组的排序问题,它使用了一个行从下标从0-9,列下标从0-n-1(n是一维数组中的元素数目)的二维整数数组,二维数组的每一行叫做一个吊桶(bucket)。-(Bucket sorting method) bucket sort method from the one-dimensional array of positive integer scheduling problem, it uses a line from the subscr ipt from
algoprograms
- bucket sort and radix sort
Yamini.Navid.BucketSort
- This Bucket sort,both sequential and parallel code, using C++ and MPI -This is Bucket sort,both sequential and parallel code, using C++ and MPI
SORTS.RAR
- THIS THE BUCKET SORT APPLICATION USING C LANGUAGE-THIS IS THE BUCKET SORT APPLICATION USING C LANGUAGE
saturdaynight
- 一个简单的桶排序 MPI 例子 包括 scatter gather gatherv alltoall alltoallv 的使用 -a bucket sort MPI sample using the gather scatter gatherv alltoall and alltoallv function
sort
- 用JAVA语言实现的一些排序算法。包括冒泡排序、桶排序、基数排序、堆排序、插入排序、归并排序、快速排序、计数排序、选择排序。-JAVA language using some sorting algorithm. Including bubble sort, bucket sort, radix sort, heap sort, insertion sort, merge sort, quick sort, counting sort, selection sort.
SomeSortAlgorithm
- 一些排序算法用java来实现的,包括快速排序、插入排序、冒泡排序、稀尔排序、桶排序、归并排序-Some sort algorithm implemented with java, including the quick sort, insertion sort, bubble sort, shell sort, bucket sort, merge sort
14parallel_bucket_sort
- Parallel Bucket Sort with MPI
bucket
- bucket sort example that works in parallel that works on windows system with open mpi. Input is hard coded, no real interface for input, you will need to extend the program.
bucket1
- a version of the bucket sort for mpi c-a version of the bucket sort for mpi c++
bucket-sort
- 数据结构排序算法之桶排序法,此算法用C++编程语言书写 特别适合初学数据结构的人学习。-Data structures sorting algorithms bucket sort, this algorithm using C++ written in a programming language particularly suitable for beginner data structure of human learning.
bucket-sort
- 桶排序,visual C++编程,有注释-bucket sort in visual c++
Bucket-sort-binary-search
- 随机产生一定范围内的数然后进行桶排序,最后二分查找这些数中的一些数。-Generating a random number within a certain range and then the bucket sort, the last two of these numbers to find the couple.
Bucket-sort
- 桶排序算法的实现,桶排序算法是比较流行的算法,用的是c语言-Achieve bucket sort algorithm, bucket sort algorithm is more popular algorithms, using c language
Bucket-sort
- 基于VC6.0环境下编写的桶式排序源程序-In VC6.0 environment in preparation bucket sort program
Bucket-Sort
- 桶排序也叫箱排序。工作的原理是将数组分到有限数量的桶子里,每个桶子再个别排序(有可能再使用别的排序算法或是以递归方式继续使用桶排序进行排序)。- Bucket sort is also called sorting box. Work principle is that the array to a limited number of bucket, each bucket and individual ranking (may use other sorting algorithms
Bucket-sort
- 本程序是用c语言实现的简单的桶排序(将若干个正整数以o(n)的时间复杂度进行排序,过程不需要进行两个数的比较)。-This procedure is to use c language to achieve a simple bucket sort (a number of positive integers to o (n) time complexity of the sort, the process does not need to compare the two numbers).
BucketSort
- Sort arrays by bucket sort, only numbers