数据结构 C++冒泡排序 数组当参数传递

冒泡排序
#include <iostream>

using namespace std;
void bubblesort1A(int A[],int n);
int main() {
int A[10]={0},n=0,i=0;
cin>>n;
for( i=0;i<n;i++)
cin>>A[i];
bubblesort1A( A , n);
for(int i=0;i<n;i++)
cout<<A[i]<<endl;
return 0;
}
void bubblesort1A(int A[],int n)
{
bool sorted = false;
while (!sorted)
{
sorted = true;
for (int i = 1; i < n; i++)
{
if (A[i - 1] > A[i])
{
swap(A[i - 1], A[i]);
sorted = false;
}
}n--;
}
}

数组当参数传递
#include <iostream>
using namespace std;
int test2(int a[]){
for(int i=0;i<5;i++){
cout<<a[i]<<endl;
}
}
int main(){
int a[5] = {1,2,3,4,5};
test2(a);
}
 
 

猜你喜欢

转载自www.cnblogs.com/wwqdata/p/11515342.html