用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, 9, 1, 5, 6};
int n = sizeof(arr) / sizeof(arr[0]);
bubbleSort(arr, n);
cout << "Sorted array: ";
for(int i = 0; i < n; i++) {
cout << arr[i] << " ";
}
return 0;
}
输出:
Sorted array: 1 2 5 5 6 9
原文地址: http://www.cveoy.top/t/topic/bd9b 著作权归作者所有。请勿转载和采集!