2. 算法笔记-三傻排序(选择,冒泡和插入)

选择排序:i~n-1 范围上,找到最小值并放在 i 位置,然后 i+1~n-1 范围上继续。
冒泡排序:0~i 范围上,相邻位置较大的数滚下去,最大值最终来到 i 位置,然后 0~i-1 范围上继续。
插入排序:0~i 范围上已经有序,新来的数从右到左滑到不再小的位置插入,然后继续。

#include <vector>                                                                                                              
#include <cstdio>

class Sort{
public:
    void swap(std::vector<int> &vec, int index_1, int index_2){
        int tmp = vec[index_1];
        vec[index_1] = vec[index_2];
        vec[index_2] = tmp;
        return;
    }   

    void select_sort(std::vector<int> &vec){
        int vec_size = vec.size();
        if(vec_size < 2)
            return;
        for(int i = 0; i < vec_size - 1; ++i){
            int min_index = i;
            for(int j = i + 1; j < vec_size; ++j){
                if(vec[j] < vec[min_index])
                    min_index = j;
            }   
            this->swap(vec, i, min_index);
        }   
        return;
    }

    void bubble_sort(std::vector<int> &vec){
        int vec_size = vec.size();
        if(vec_size < 2)
            return;
        for(int i = vec_size - 1; i > 0; --i){
            for(int j = 0; j < i; ++j){
                if(vec[j] > vec[j+1])
                    this->swap(vec, j, j+1);
            }
        }
        return;
    }

    void insert_sort(std::vector<int> &vec){
        int vec_size = vec.size();
        if(vec_size < 2)
            return; 
        for(int i = 1; i < vec_size; ++i){
            for(int j = i - 1; j >= 0 && vec[j] > vec[j+1]; --j){
                this->swap(vec, j, j+1);
            }
        }
        return;
    }
};

void print_vector(const std::vector<int> &vec){
    printf("{");
    for (auto value : vec){
        printf(" %d ", value);
    }
    printf("}\n");
    return;
}

int main(void){
    std::vector<int> vec = {2, 1, 5, 4, 6};
    print_vector(vec);

    Sort sort;
    sort.select_sort(vec);
    print_vector(vec);
    return 0;
} 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值