箱子排序(桶排序),基数排序

#include <iostream>
#include <list>
#include <time.h>
//#include "circularListWithHeader.h"
#include "extendedChain.h"
#include <math.h>
/*本算法为箱子排序的算法
 * Author:  zailushang
 * Data:    2020-06-27
 *
 *目的为了熟悉C++的双向链表
 *
 *
 */
#define BUFFSIZE 1000000
#define RADIX   100
struct studentRecord{//默认为公有的成员
    int sort;
    int number;
    std::string *name;
    int operator!=(const studentRecord &rht)const{
        return this->sort != rht.sort;
    }
    operator int()const{//赋给一个int的时候,赋予的是sort值
        return sort;
    }
    studentRecord():sort(0),name(NULL){}
    studentRecord(int sorts,std::string *names):sort(sorts),name(names){}
};
void binSort(std::list<studentRecord> &theList,int range){
    std::list<studentRecord> *p = new std::list<studentRecord>[range+1];//建立一个数组空间,用来保存各个链表
    clock_t t = clock();
    for(auto it = theList.begin();it != theList.end();it = theList.begin()){//使用迭代器去访问元素
        p[it->sort].push_back(*it);//将对应的分数报错到相应的链表中;时间复杂度
        theList.erase(it);
    }
    for(int i = 0; i <= range;++i){
        for(auto it = p[i].begin(); it != p[i].end();it=p[i].begin()){
            theList.push_back(*it);
            p[i].erase(it);
        }
    }
    delete []p;
    std::cout<<"the bin sort time is "<<float(clock()-t)/CLOCKS_PER_SEC;
}
void binSortByList(extendedChain<studentRecord> &theList,int range){
    extendedChain<studentRecord> *p = new extendedChain<studentRecord>[range+1];
    auto listSize = theList.mychain<studentRecord>::size();
    for(int i = 0; i != listSize;++i){
        studentRecord x = theList.get(0);
        theList.erase(0);
        p[x.sort].insert(0,x);
    }
    for(int j = range;j >= 0;--j){
        while(!p[j].empty()){
            studentRecord x = p[j].get(0);
            p[j].erase(0);
            theList.insert(0,x);
        }
    }
    delete []p;
}
void binSortUsedByRadix(extendedChain<studentRecord> &theList,int c){
    int listSize = theList.mychain<studentRecord>::size();
    extendedChain<studentRecord> *p = new extendedChain<studentRecord>[listSize+1];
    int number = 1,anotherNUmber=1;
    for(int i = 0; i != c;++i)
        number*=RADIX;
    anotherNUmber = number/RADIX;
    for(int i = 0; i != listSize;++i){
        studentRecord x = theList.get(0);
        theList.erase(0);
        p[((x.sort)%number)/anotherNUmber].insert(0,x);//这个是比较数
    }
    for(int j = listSize;j >= 0;--j){
        while(!p[j].empty()){
            studentRecord x = p[j].get(0);
            p[j].erase(0);
            theList.insert(0,x);
        }
    }
    delete []p;
}

void radixSort(extendedChain<studentRecord> &theList,int range){
    int listSize  = theList.mychain<studentRecord>::size();
    std::cout<<"\nthe radix is "<<RADIX<<std::endl;
    int c = 1;
    extendedChain<studentRecord> *p = new extendedChain<studentRecord>[listSize+1];
    while(pow(RADIX,c) < range)
        c++;//获得指数的次方
    std::cout<<"\nthe radix is "<<c<<std::endl;
    for(int i = 0;i != c;i++){
        int number = 1,anotherNUmber=1;
        for(int j = 0;j != c;++j)
            number*=RADIX;
        anotherNUmber = number/RADIX;
        for(int k = 0; k != listSize;++k){
            studentRecord x = theList.get(0);
            theList.erase(0);
            p[((x.sort)%number)/anotherNUmber].insert(0,x);//这个是比较数
        }
        for(int j = listSize;j>= 0;--j){
            while(!p[j].empty()){
                studentRecord x = p[j].get(0);
                p[j].erase(0);
                theList.insert(0,x);
            }
        }
         //binSortUsedByRadix(theList,i+1);
    }
    delete []p;
}
int main(){
    std::list<studentRecord> listStduent;
    extendedChain<studentRecord> test1,test2,test3;    
    std::string s("test");
        clock_t t = clock();
    auto it = listStduent.begin();
    for(int i = 0;i != BUFFSIZE;++i,it = listStduent.begin())
        listStduent.insert(it,studentRecord(i,&s));
        //listStduent.push_front(studentRecord(i,&s));
    std::cout<<"use STL push_front insert "<<BUFFSIZE<<" numbers need time is "<<float(clock()-t)/CLOCKS_PER_SEC<<"\n";
        std::cout<<"\n********************************\n";
    clock_t t3 = clock();
    for(int i = 0;i != BUFFSIZE/1000;++i)
        test1.insert(0,studentRecord(i,&s));
    std::cout<<"use myself push_front insert "<<BUFFSIZE<<" numbers need time is "<<float(clock()-t3)/CLOCKS_PER_SEC<<"\n";
    
    std::cout<<"\n*********************\n";
    binSort(listStduent,BUFFSIZE);
    std::cout<<"\n*******************";
    /*
    for(auto it = listStduent.begin();it != listStduent.end();++it)
        std::cout<<(*it).sort<<" ";
    */
    /*
     * 冒泡排序
    clock_t t4 = clock();
    test2.bubbleSort();
    std::cout<<"\nuse myself bubbleSort "<<BUFFSIZE<<" numbers need time is "<<float(clock()-t4)/CLOCKS_PER_SEC<<"\n";
    */
    for(int i = 0; i != BUFFSIZE/1000;++i)
        test2.insert(0,studentRecord(i,&s));

    std::cout<<"\n*****************************\n";
    clock_t t5 = clock();
    binSortByList(test1,BUFFSIZE);
    std::cout<<"\nuse the list By the function that the time is "<<float(clock()-t5)/CLOCKS_PER_SEC;
    std::cout<<"\n*****************************";
    std::cout<<"\n******************************\n";
    clock_t t6 = clock();
    test2.binSort(BUFFSIZE);
    std::cout<<"\nuse the binSort of the member in class that  the time is "<<float(clock()-t6)/CLOCKS_PER_SEC;
    /*
     * for(auto it = test2.begin();it != test2.end();++it)
        std::cout<<(*it).sort<<" ";
    */
    
    for(int i = 0; i != BUFFSIZE/1000;++i)
        test3.insert(0,studentRecord(i,&s));

    
    std::cout<<"\n******************************";
    clock_t t7 = clock();
    radixSort(test3,BUFFSIZE);
    std::cout<<"\nuse the binSort of the member in class that  the time is "<<float(clock()-t7)/CLOCKS_PER_SEC;
    std::cout<<"\n******************************\n";
   
    return 0;
}
/*
 经过上述的测试比较,发现STL官方给的双向链表不如自己写的单向链表的插入和箱子排序速度快,因为主要是插入的时候需要两个
 指针进行要转换,肯定会比单链表慢。
 冒泡排序比箱子排序法慢了不止一点两点(在大数据的情况下)
 */

这里说明一点,基数排序桶排序的一个优化。但是如果输入范围和你的桶的个数一样的时候,基数排序的优势就没有那么大了。
记住:虽然基数排序的时间复杂度虽然有O(n),桶排序有O(n+range)。但是在实际中,在某种情况下,基数排序不一定比桶排序快。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值