码迷,mamicode.com
首页 > 编程语言 > 详细

冒泡算法C#

时间:2014-10-21 15:11:50      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

冒泡算法C#
namespace数组排序
{
classProgram
{
staticvoidMain(string[]args)
{
inttemp=0;
int[]arr={23,44,66,76,98,11,3,9,7};
#region该段与排序无关
Console.WriteLine("排序前的数组:");
foreach(intiteminarr)
{
Console.Write(item+"");
}
Console.WriteLine();
#endregion
for(inti=0;i<arr.Length-1;i++)
{
#region将大的数字移到数组的arr.Length-1-i
for(intj=0;j<arr.Length-1-i;j++)
{
if(arr[j]>arr[j+1])
{
temp=arr[j+1];
arr[j+1]=arr[j];
arr[j]=temp;
}
}
#endregion
}
Console.WriteLine("排序后的数组:");
foreach(intiteminarr)
{
Console.Write(item+"");
}
Console.WriteLine();
Console.ReadKey();
}
}
}

 

冒泡算法C#

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/szfhquan/p/4040277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!