冒泡排序
Posted smilesky314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡排序相关的知识,希望对你有一定的参考价值。
#include <iosTREAM>
using namespace std;
int main(){
int temp;
int n;
cin>>n;
int *a=new int[n];
for(int k=0;k<n;k++){
cin>>a[k];
}
for(int b=0;b<n;b++){
cout<<a[b]<<" ";}
cout<<endl;
/*发一:
for(int i=n;i>1;i--){
for(int j=0;j<i-1;j++){
if(a[j]>a[j+1]){
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}*/
for(int i=0;i<n-1;i++){
for(int j=0;j<n-i-1;j++){
if(a[j]>a[j+1]){
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
for(int c=0;c<n;c++){
cout<<a[c]<<" ";
}
return 0;
}
以上是关于冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章