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){    // passing vector by reference
    int n=a.size();
    for(int i=0;i<n;i++){	// to run swap loop for n times
        int swap_flag=0;
        for(int j=0;j<n-1-i;j++){	// x=0 to x=n-2-i
            if(a[j]>a[j+1]){        // larger elements move towards right    
                swap(a[j],a[j+1]);  // as last i elements are already sorted
                swap_flag=1;
            }
        }
        if(swap_flag==0){   // if no swap occured array already sorted, break out of loop
            break;
        }
    }
}

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);
        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

给自己五分钟,彻底搞懂并优化冒泡排序

给自己五分钟,彻底搞懂并优化冒泡排序