int BubbleSort(int a[])
{
int length = sizeof(a)/sizeof(int);
int i,j;
int temp;
for(i = 0;i < length;i++)
{
for(j = a[length-1];j > i;j--)
{
if(a[j] < a[j-1])
{
temp = a[j];
a[j] = a[j-1];
a[j-1] = temp;
}
}
}
return a;
}
原文地址:http://www.cnblogs.com/chenboyu/p/3719625.html