首页 > 代码库 > 排序--冒泡排序

排序--冒泡排序

//冒泡排序
void Bubble_Sort(int *a,int n)/*定义两个参数:数组首地址与数组大小*/
{
int i,j,temp;
for(i=0;i<n-1;i++)
for(j=0;j<n-i;j++) /*注意循环的上下限*/
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[+1];
a[j+1]=temp;
}
}

排序--冒泡排序