当前位置:   article > 正文

【转载】C++之桶排序

【转载】C++之桶排序

一个小的排序方法,挺有意思

#include <iostream>
using namespace std;
 
const int offset = 105; // 为桶的边界
const int maxSize = 100; // 数组的最大存储范围
 
// 桶排序
template <typename T>
void BucketSort(T arr[], int n);
// 输出数组
template <typename T>
void Print(T arr[], int n);
 
int main(int argc, const char * argv[]) {
    int n, i, arr[maxSize];
    
    cout << "请输入要排序的数的个数:";
    cin >> n;
    srand((int)time(NULL)); // 设置时间为随机点
    for(i = 0; i < n; i++) // 产生n个随机数
        arr[i] = rand() % 100;
    cout << "排序前:";
    Print(arr, n);
    BucketSort(arr, n); // 调用桶排序
    std::cout << "排序后:";
    Print(arr, n);
    return 0;
}
 
template <typename T>
void BucketSort(T arr[], int n) {
    int i, j;
    T buckets[offset];
    
    for(i = 0; i < offset; i++) // 清零
        buckets[i] = 0;
    // 1.计数,将数组arr中的元素放到桶中
    for(i = 0; i < n; i++)
        buckets[arr[i]]++; // 将arr[i]的值对应buckets数组的下标,每有一个就加1
    // 2.排序
    for(i = 0, j = 0; i < offset; i++) {
        while(buckets[i] > 0) { // 说明存有元素,相同的整数,要重复输出
            arr[j] = i;
            buckets[i]--;
            j++;
        }
    }
}
 
// 输出数组
template <typename T>
void Print(T arr[], int n) {
    int i;
    
    for(i = 0; i < n; i++)
        cout << arr[i] << " ";
    cout << endl;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/678532
推荐阅读
相关标签
  

闽ICP备14008679号