文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>将数字字符串排序

将数字字符串排序

时间:2011-03-22  来源:Vicky_Chen

            string str = "843217965";
char[] chars = str.ToCharArray();
List
<int> lists = new List<int>();
foreach (char i in chars)
{
lists.Add(
int.Parse(i.ToString()));
}
//lists.Sort();//sort默认是从小到大的。显示123456789
int[] ints = lists.ToArray();


//冒泡排序,这个是从小到大显示
for (int i = 0; i < ints.Length; i++)
{
for (int j = i; j < ints.Length; j++)
{
if (ints[i] > ints[j])
{
int temp = ints[i];
ints[i]
= ints[j];
ints[j]
= temp;
}
}
}

for (int i = 0; i < ints.Length;i++ )
{
Console.Write(ints[i].ToString());
}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载