#include using namespace std;

void bubbleSort(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[] = { 64, 25, 12, 22, 11 }; int n = sizeof(arr) / sizeof(arr[0]); bubbleSort(arr, n); cout << 'Sorted array: '; // 将双引号改为单引号 for (int i = 0; i < n; i++) { cout << arr[i] << ' '; // 将双引号改为单引号 } cout << endl; return 0; }

C++ 冒泡排序代码示例

原文地址: https://www.cveoy.top/t/topic/lFMu 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录