c_cpp 冒泡排序 - 递归

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 冒泡排序 - 递归相关的知识,希望对你有一定的参考价值。

#include <bits/stdc++.h>
using namespace std;

//  #Sorting #Theory

void swap(int &x,int &y){
    int t=x;
    x=y;
    y=t;
}
void BubbleSort(vector<int> &a,int n){    // passing vector by reference
    if(n==1){
        return; // Base case: if one elements array is already sorted
    }
    int swap_flag=0;
    for(int j=0;j<n-1;j++){ //x=0 to x=n-2
        if(a[j]>a[j+1]){
            swap(a[j],a[j+1]);
            swap_flag=1;
        }
    }
    if(swap_flag==0){   // if no swap occured then the array is already sorted
        return;
    }
    BubbleSort(a,n-1);  // as the largest elements is moved toward right
                        // sort the remaining first n-1 elements
}

int main(){
    int t;
    cin>>t;
    while(t--){
        int n;
        cin>>n;
        vector<int> a(n);
        for(int i=0;i<n;i++){
            cin>>a[i];
        }
        cout<<"Original: ";
        for(int i=0;i<n;i++){
            cout<<a[i]<<" ";
        }
        cout<<endl;
        BubbleSort(a,n);    //Sort first n elements
        cout<<"Sorted: ";
        for(int i=0;i<n;i++){
            cout<<a[i]<<" ";
        }
        cout<<endl;
        
    }
    
    return 0;
}

以上是关于c_cpp 冒泡排序 - 递归的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 冒泡排序

c_cpp 冒泡排序 - 优化

c_cpp 冒泡排序

c_cpp 冒泡排序的.cpp

排序2-冒泡排序与快速排序(递归加非递归讲解)

排序算法杂谈 —— 冒泡排序的递归实现