用Cpp写一个冒泡排序
时间: 2023-05-14 09:06:04 浏览: 98
好的,以下是用Cpp写的冒泡排序代码:
```cpp
#include <iostream>
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]) {
swap(arr[j], arr[j + 1]);
}
}
}
}
int main() {
int arr[] = { 64, 34, 25, 12, 22, 11, 90 };
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;
}
```
希望能对你有所帮助!
相关问题
用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 ;
}
```
希望能对您有所帮助!
写一个冒泡排序算法,用cPP
下面是用C++写的冒泡排序算法:
```c++
#include <iostream>
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[] = {5, 2, 7, 1, 9, 4, 3, 8, 6};
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;
}
```
该算法的基本思想是对相邻的两个元素进行比较,如果它们的顺序不正确就交换它们的位置。这个过程会多次进行,每次都会把最大的数移到最后面。最终,整个数组就会按照从小到大的顺序排列。
阅读全文