2019-05-20 排序算法

常见排序算法模板实现


为了使用方便,整理了以下几种排序算法,没有过的文字描述以及动画图表之类的说明。

#pragma once

#define NULL 0
#define MARK -65535


template<class T>           //声明
class CDaXiongTemplateSort
{
public:
    CDaXiongTemplateSort();
    ~CDaXiongTemplateSort();
    void SetMember(T*, int );                                                   //初始化数据成员
    T*   BubbleSort(bool ascending = true);                                     //冒泡排序 默认升序
    T*   SelectionSort(bool ascending = true);                                  //选择排序
    T*   InsertionSort(bool ascending = true);                                  //插入排序
    T*   ShellSort(bool ascending = true);                                      //希尔排序
    T*   MergeSort(T*, int size, bool ascending = true);                        //归并排序 start 为起始标号,end 为结束标号
    T*   BucketSort(int n);                                                     //桶排序   n表示数的位数,只适用于正整数

protected:
    T *m_num;
    int m_length;
};

template<class T>
CDaXiongTemplateSort<T>::CDaXiongTemplateSort()
{
    this->m_num = nullptr;
}

template<class T>
CDaXiongTemplateSort<T>::~CDaXiongTemplateSort()
{
    if (nullptr != this->m_num)
    {
        delete[]this->m_num;
    }
    this->m_num = nullptr;
}

template<class T>
void CDaXiongTemplateSort<T>::SetMember(T* num, int length)
{
    this->m_num = new T[length];
    this->m_length = length;
    for (int i = 0; i < length; ++i)
    {
        this->m_num[i] = num[i];
    }
}


//冒泡
template<class T>
T* CDaXiongTemplateSort<T>::BubbleSort(bool ascending = true)
{
    
    T tempNum;
    for (int i = 0; i < this->m_length; ++i)
    {
        for (int j = 0; j < this->m_length - 1 - i; ++j)
        {
            if (ascending)
            {
                if (this->m_num[j] > this->m_num[j + 1])
                {
                    tempNum = this->m_num[j];
                    this->m_num[j] = this->m_num[j + 1];
                    this->m_num[j + 1] = tempNum;
                }
                
            }
            else
            {
                if (this->m_num[j] < this->m_num[j + 1])
                {
                    tempNum = this->m_num[j];
                    this->m_num[j] = this->m_num[j + 1];
                    this->m_num[j + 1] = tempNum;
                }
                
            }
            
        }
        
    }
    
    return this->m_num;
}


//选择
template<class T>
T* CDaXiongTemplateSort<T>::SelectionSort(bool ascending = true)
{
    T tempNum;
    for (int i = 0; i < this->m_length - 1; ++i)
    {
        for (int j = i + 1; j < this->m_length; ++j)
        {
            if (ascending)
            {
                if (this->m_num[i] > this->m_num[j])
                {
                    tempNum = this->m_num[j];
                    this->m_num[j] = this->m_num[i];
                    this->m_num[i] = tempNum;
                }
                
            }
            else
            {
                if (this->m_num[i] < this->m_num[j])
                {
                    tempNum = this->m_num[j];
                    this->m_num[j] = this->m_num[i];
                    this->m_num[i] = tempNum;
                }
                
            }

        }

    }

    return this->m_num;
}

//插入
template<class T>
T* CDaXiongTemplateSort<T>::InsertionSort(bool ascending = true)
{
    T tempNum;
    int mark;
    for (int i = 0; i < this->m_length - 1; ++i)
    {
        tempNum = this->m_num[i + 1];
        for (int j = i + 1; j > 0 ; --j)
        {
            if (ascending)
            {
                if (tempNum < this->m_num[j - 1])
                {
                    this->m_num[j] = this->m_num[j - 1];
                    this->m_num[j - 1] = tempNum;
                }
                
            }
            else
            {
                if (tempNum > this->m_num[j - 1])
                {
                    this->m_num[j] = this->m_num[j - 1];
                    this->m_num[j - 1] = tempNum;
                }
                
            }
            
            
        }
    }
    return this->m_num;
}


//希尔
template<class T>
T* CDaXiongTemplateSort<T>::ShellSort(bool ascending = true)
{
    T tempNum;
    int step = this->m_length / 2;
    while (step > 0)
    {
        for (int i = 0; i < this->m_length - step; ++i)
        {
            tempNum = this->m_num[i + step];
            for (int j = i + step; j > 0 ; j-=step)
            {
                if (ascending)
                {
                    if ((j - step) >= 0 && (tempNum < this->m_num[j - step]))       //此处若用for循环则要判别 j - srep < 0的情况
                    {
                        this->m_num[j] = this->m_num[j - step];
                        this->m_num[j - step] = tempNum;
                    }
                }
                else
                {
                    if ((j - step) >= 0 && (tempNum > this->m_num[j - step]))       //此处若用for循环则要判别 j - srep < 0的情况
                    {
                        this->m_num[j] = this->m_num[j - step];
                        this->m_num[j - step] = tempNum;
                    }
                }
                
            }
        }
        step /= 2;
    }
    return this->m_num;
}

//归并
template<class T>
T* CDaXiongTemplateSort<T>::MergeSort(T* num, int size, bool ascending = true)
{
    
    
    T* lift, *right;
    if (size >> 1)
    {
        lift = new T[size >> 1];
        right = new T[size - (size >> 1)];
        for (int i = 0, j = 0; i < size; ++i)
        {
            if (i < size >> 1)
            {
                lift[i] = num[i];
            }
            else
            {
                right[j++] = num[i];
            }
        }

        MergeSort(lift, size >> 1, ascending);          //排序lift
        MergeSort(right, size - (size >> 1), ascending);    //排序right
        /**************************************************************/

        /**************************************************************/

        int i, j, k;
        for (i = 0, j = 0, k = 0; i < size >> 1 && j < size - (size >> 1);)
        {
            if (ascending)             //升序
            {
                if (lift[i] < right[j])//合并有序
                {
                    num[k++] = lift[i++];
                }
                else
                {
                    num[k++] = right[j++];
                }
            }
            else                        //降序
            {
                if (lift[i] < right[j])//合并有序
                {
                    num[k++] = right[j++];
                }
                else
                {
                    
                    num[k++] = lift[i++];
                }
            }
            
        }
        //剩余元素全部放回去
        if (i >= size >> 1)//说明lift中的内容放完了
        {
            while (j < size - (size >> 1))
            {
                num[k++] = right[j++];
            }
        }
        else
        {
            while (i < size >> 1)
            {
                num[k++] = lift[i++];
            }
        }
        delete[] lift;
        delete[] right;
    }

    return num;
}

//桶
template<class T>
T* CDaXiongTemplateSort<T>::BucketSort(int n)
{
    T* bucket[11];                                      //声明11个桶,第11个桶用来暂存有序数据
    int temp;                                           //临时桶的下标
    static int count = 0;
    for (int i = 0;i < 11; ++i)
    {
        bucket[i] = new T[this->m_length];              //定义10 * n 的矩阵用做存储数据 n表示需要排序数组的长度
        for (int j = 0; j < this->m_length; ++j)
        {
            bucket[i][j] = MARK;                        //初始化所有桶元素
        }
    }
    
    for (int i = 0, k = 1; i < n; ++i, k *= 10)//排序的次数 n 最大值的位数  
    {
        for (int j = 0; j < this->m_length; ++j)//入桶把数组this->m_num中元素全部倒入桶中
        {
            if (this->m_num[j] < k * 10 && this->m_num[j] >= k)
            {
                temp = this->m_num[j] / k % 10;
                bucket[temp][j] = this->m_num[j];//放入桶中
            }
        }
        //立刻倒回原来的数组
        for (int m = 0, j = 0; m < 10; ++m) 
        {
            for (int x = 0; x < this->m_length; ++x)//数据的个数
            {
                if (bucket[m][x] != MARK)
                {
                    bucket[10][count++] = bucket[m][x];//倒回桶中
                    bucket[m][x] = MARK;
                }
            }
        }
    }

    for (int i = 0; i < this->m_length; ++i)
    {
        this->m_num[i] = bucket[10][i];
    }

    for (int i = 0; i < 11; ++i)
    {
        delete []bucket[i];
        bucket[i] = NULL;
    }
    return this->m_num;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • 《来客》 郭宏安 译 小学教师达吕望着两个人朝山上走来,一个骑马,一个步行。学校建在半山腰上,他们还没有爬上门前的...
    黑幫詩人阅读 975评论 0 2
  • 酸枣树 原创:白秋燕 我的家乡陕北有一种树...
    燕子集阅读 2,214评论 0 2
  • 我与母亲之间的链接的反思,没有学心理学之前,我一直以为我还算是一个孝顺的孩子,和父母的关系很好,通过学习之后才知道...
    紫色风铃的简书阅读 209评论 0 1