int[] myArray = new int[] { 10, 8, 3, 5, 6, 7, 4, 6, 9 };
// 取长度最长的词组 -- 冒泡法
for( int j=1;j
for(int i=0;i
// 如果 myArray[i] > myArray[i+1] ,则 myArray[i] 上浮一位
if( myArray[i]>myArray[i+1])
{
int temp = myArray[i];
myArray[i] = myArray[i+1];
myArray[i+1] = temp;
}
}
}
从大到小排序
int[] myArray = new int[] { 10, 8, 3, 5, 6, 7, 4, 6, 9 };
// 取长度最长的词组 -- 冒泡法
for( int j=1;j
for(int i=0;i
// 如果 myArray[i] < myArray[i+1] ,则 myArray[i] 下沉一位
if( myArray[i]
int temp = myArray[i];
myArray[i] = myArray[i+1];
myArray[i+1] = temp;
}
}
}
for (int j = 0; j < list.Length; j++)
{
for (i = list.Length - 1; i > j; i--)
{
if (list[j] < list[i])
{
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
1楼完全正确 冒泡排序就像倒水一样的 你怎么才能把装了可乐的杯子 倒进装了茶的杯子里
这个步骤就需要第三个杯子来完成
就像一楼的temp变量