asp.net下实现输入数字的冒泡排序
时间:2021-03-01 13:45:11|栏目:.NET代码|点击: 次
复制代码 代码如下:
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]);
}
}
上一篇:C#中用foreach语句遍历数组及将数组作为参数的用法
栏 目:.NET代码
下一篇:C#实现简单文本编辑器
本文标题:asp.net下实现输入数字的冒泡排序
本文地址:http://www.codeinn.net/misctech/72406.html