C++冒泡排序

​void bubble_sort(int arr[], int n){
    for(int i = 0; i < n-1; i++){
        for(int j = 0; j < n-i-1; j++){
            if(arr[j] > arr[j+1]){
                int temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
            }
        }
    }
}

使用:

int main(){
    int arr[] = {5, 2, 6, 1, 3};
    int n = sizeof(arr) / sizeof(arr[0]);
    bubble_sort(arr, n);
    for(int i = 0; i < n; i++){
        cout << arr[i] << " ";
    }
    return 0;
}

输出结果:

1 2 3 5 6

你可能感兴趣的:(C++更多语法,c++入门必备,c++,算法,数据结构)