c# 关于冒泡排序法的简单代码

2024-11-02 10:41:13
推荐回答(3个)
回答(1):

今天用HTML+JQ写了个演示的页面,每次交换元素会有图形的动作。需要吗?

回答(2):

public void BubbleSort(int[] array)
{
int len = array.Length;
for (int j = 0; j < len; ++j)
{
for (int i = j; i < len; ++i)
{
if (array[j] > array[i])
{
int temp = array[j];
array[j] = array[i];
array[i] = temp;
}
}
}
}
以上为冒泡排序法,输入一个int数组出来就是排序好的数组了

回答(3):

for(int count=1;count<数组1.length;count++)
for(int index=0;index<数组.length-count;index++)
if(数组[index]>数组[index+1])
//交换