欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net下实现输入数字的冒泡排序

程序员文章站 2024-03-08 21:40:46
复制代码 代码如下: protected void btnsort_click(object sender, eventargs e) { string array1 =...
复制代码 代码如下:

protected void btnsort_click(object sender, eventargs e)
{
string array1 = txtsort.text.trim();
string[] array21=array1.split(',');
int dxiao = array21.length;
int[] array = new int[dxiao];
int temp=0;
for (int i = 0; i < array.length; i++)
{
array[i] = convert.toint32(array21[i]);
}
for (int i = 0; i < array.length - 1; i++)
{
for (int j = i + 1; j < array.length; j++)
{
if (array[j] < array[i])
{
temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
}
for (int i = 0; i < dxiao; i++)
{
lbsort.text = lbsort.text + " " + convert.tostring(array[i]);
}
}