搜索资源列表

  1. bucket sort

    0下载:
  2. 应用bucket sort 算法并行排列一组随机数据
  3. 所属分类:其它资源

    • 发布日期:2011-04-27
    • 文件大小:1444
    • 提供者:fireabe
  1. router(WFQ+token)

    0下载:
  2. 简单模拟路由器转发的源代码,其中采用了WFQ算法及令牌桶机制!-Simple simulation of a router forwarding source code, which uses WFQ algorithm and the token bucket mechanism!
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-13
    • 文件大小:969728
    • 提供者:阿飞发
  1. bucketSort

    0下载:
  2. (吊桶排序法)吊桶排序法源于一维正整数数组的排序问题,它使用了一个行从下标从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
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:zzd
  1. algoprograms

    0下载:
  2. bucket sort and radix sort
  3. 所属分类:Windows编程

    • 发布日期:2024-05-13
    • 文件大小:14336
    • 提供者:konzfadin
  1. Stack-BucketAlgorithm

    0下载:
  2. 仿真(n,k,m)非系统卷积码的桶式堆栈算法(Stack-Bucket Algorithm)序列译码在AWGN信道条件下的误码性能,信噪比区间、卷积码参数、生成序列以及吊桶大小、堆栈大小等算法参数均可以自己设定。-Simulation (n, k, m) non-systematic convolutional codes of the barrel stack algorithm (Stack-Bucket Algorithm) se
  3. 所属分类:邮电通讯系统

    • 发布日期:2024-05-13
    • 文件大小:10240
    • 提供者:孙琛
  1. Yamini.Navid.BucketSort

    0下载:
  2. 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
  3. 所属分类:并行运算

    • 发布日期:2024-05-13
    • 文件大小:3072
    • 提供者:Navid Yamini
  1. SORTS.RAR

    0下载:
  2. THIS THE BUCKET SORT APPLICATION USING C LANGUAGE-THIS IS THE BUCKET SORT APPLICATION USING C LANGUAGE
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:SS
  1. sorting_and_searching

    0下载:
  2. 包括了常用的一些排序算法与搜索算法,如快速排序,桶排序,堆排序,冒泡排序,以及二分搜索等-Includes a number of commonly used sorting algorithms and search algorithms, such as quick sort, bucket sort, heap sort, bubble sort, and the two sub-search, and so
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:236544
    • 提供者:seckCoder
  1. bucket.tar

    0下载:
  2. bucket algorithm for sorting
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:zoran
  1. saturdaynight

    0下载:
  2. 一个简单的桶排序 MPI 例子 包括 scatter gather gatherv alltoall alltoallv 的使用 -a bucket sort MPI sample using the gather scatter gatherv alltoall and alltoallv function
  3. 所属分类:并行运算

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:zhidong
  1. sort

    0下载:
  2. 用JAVA语言实现的一些排序算法。包括冒泡排序、桶排序、基数排序、堆排序、插入排序、归并排序、快速排序、计数排序、选择排序。-JAVA language using some sorting algorithm. Including bubble sort, bucket sort, radix sort, heap sort, insertion sort, merge sort, quick sort, counting sort,
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-13
    • 文件大小:4096
    • 提供者:X
  1. SomeSortAlgorithm

    0下载:
  2. 一些排序算法用java来实现的,包括快速排序、插入排序、冒泡排序、稀尔排序、桶排序、归并排序-Some sort algorithm implemented with java, including the quick sort, insertion sort, bubble sort, shell sort, bucket sort, merge sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:8192
    • 提供者:Michiel
  1. 14parallel_bucket_sort

    0下载:
  2. Parallel Bucket Sort with MPI
  3. 所属分类:并行运算

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:billalraza
  1. bucket

    0下载:
  2. 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.
  3. 所属分类:并行运算

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:VMax
  1. bucket1

    0下载:
  2. a version of the bucket sort for mpi c-a version of the bucket sort for mpi c++
  3. 所属分类:并行运算

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:mila
  1. bucket

    0下载:
  2. 桶排序: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 num
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:wenzhu
  1. program-for-congestion-control-using-Leaky-bucket

    0下载:
  2. program for congestion control using Leaky bucket algorithm
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:garv24
  1. bucket-sort

    0下载:
  2. 实现桶排的算法,结合数据结构课本编写的测试程序-bucket sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:263168
    • 提供者:乔建国
  1. bucket-sort

    0下载:
  2. 数据结构排序算法之桶排序法,此算法用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.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:满达
  1. bucket-sort

    0下载:
  2. 桶排序,visual C++编程,有注释-bucket sort in visual c++
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:翟志伟
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org