可变长度的基数排序

字符串的比较是从高有效位开始依次比较,和长度没有太大关系。因此可以理解为末尾补零,长度相同。先将字符串按长度进行排序,然后从低有效位开始比较,对零(没有的位)不进行处理(已经在正确的位置)。

#include <iostream>
#include <vector>
#include <string>
using namespace std;

void radixSort(vector<string> & arr,int maxLen)
{
    const int BUCKETS=256;

    vector<vector<string>> wordsByLength(maxLen+1);
    vector<vector<string>> buckets(BUCKETS);

    for(auto & s:arr)
        wordsByLength[s.length()].push_back(std::move(s));
    int idx=0;
    for(auto & wordList:wordsByLength)
        for(auto & s:wordList)
            arr[idx++]=std::move(s);

    int startIndex=arr.size();
    for(int pos=maxLen-1;pos>=0;--pos)
    {
        startIndex-=wordsByLength[pos+1].size();
        for(int i=startIndex;i<arr.size();++i)
        {
            buckets[arr[i][pos]].push_back(std::move(arr[i]));
        }

        idx=startIndex;
        for(auto & theBucket:buckets)
        {
            for(auto & s:theBucket)
                arr[idx++]=std::move(s);
            theBucket.clear();

        }
    }
}

int main()
{
    vector<string> arr={"accde","12345","ABCDE","adc","a"};
    radixSort(arr, 5);
    for(auto & s:arr)
    {
        cout<<s<<endl;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值