用cpp写一个冒泡排序
时间: 2023-03-31 14:00:20 浏览: 74
冒泡排序.cpp
好的,以下是用 C++ 写的冒泡排序代码:
```cpp
#include <iostream>
using namespace std;
void bubbleSort(int arr[], int n) {
for (int i = ; i < n - 1; i++) {
for (int j = ; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
swap(arr[j], arr[j + 1]);
}
}
}
}
int main() {
int arr[] = { 64, 25, 12, 22, 11 };
int n = sizeof(arr) / sizeof(arr[]);
bubbleSort(arr, n);
cout << "排序后的数组:\n";
for (int i = ; i < n; i++) {
cout << arr[i] << " ";
}
cout << endl;
return ;
}
```
希望能对您有所帮助!
阅读全文