冒泡排序
1 #include <bits/stdc++.h> 2 using namespace std; 3 4 void bubbleSort(int a[],int n){ 5 for(int i=0;i<n;i++){ 6 for(int j=0;j<n;j++){ 7 if(a[j]>a[j+1]){ 8 int temp; 9 temp = a[j]; 10 a[j] = a[j+1]; 11 a[j+1] = temp; 12 } 13 } 14 } 15 } 16 17 int main(){ 18 int n; 19 int a[100]; 20 cin>>n;//输入数字个数 21 for(int i=0;i<n;i++){ 22 cin>>a[i]; 23 } 24 bubbleSort(a,n); 25 for(int i=0;i<n;i++){ 26 cout<<a[i]<<' '; 27 } 28 return 0; 29 }