标签:sp for bs amp 算法 nbsp br -- bsp
void swap(int *x, int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
void mpao(int* a,int n)
{
int x,y;
for(x=1;x<n-1;x++)
{
for(y=x-1;y>=0&&a[y]>a[x];y--,x--)
{
swap(&a[y],&a[x]);
}
}
}
标签:sp for bs amp 算法 nbsp br -- bsp
原文地址:http://www.cnblogs.com/roads-untralla/p/4151668.html