当前位置导航:炫浪网>>网络学院>>编程开发>>Visual C#教程

C#四种排序算法

冒泡排序

				

using System;

namespace BubbleSorter
{   public class BubbleSorter
{   public void Sort(int [] list)
{   int i,j,temp;
bool done=false;
j=1;
while((j<list.Length)&&(!done))
{ done=true;
for(i=0;i<list.Length-j;i++)
{
if(list[i]>list[i+1])
{
done=false;
temp=list[i];
list[i]=list[i+1];
list[i+1]=temp;
}   }
j++;  }    
}   }

public class MainClass
{   public static void Main()
{
int[] iArrary=new int[]{1,5,13,6,10,55,99,2,87,12,34,75,33,47};
BubbleSorter sh=new BubbleSorter();
sh.Sort(iArrary);
for(int m=0;m<iArrary.Length;m++)
Console.Write("{0} ",iArrary[m]);
Console.WriteLine();
}  }
}

选择排序

using System;  

namespace SelectionSorter
{  public class SelectionSorter
{   private int min;
public void Sort(int [] list)
{  for(int i=0;i<list.Length-1;i++)
{  min=i;
for(int j=i+1;j<list.Length;j++)
{   if(list[j]<list[min]) 
min=j;
}
int t=list[min];
list[min]=list[i];
list[i]=t;
}   }
}
public class MainClass
{  public static void Main()
{
int[] iArrary=new int[]{1,5,3,6,10,55,9,2,87,12,34,75,33,47};
SelectionSorter ss=new SelectionSorter();
ss.Sort(iArrary);
for(int m=0;m<iArrary.Length;m++)
Console.Write("{0} ",iArrary[m]);
Console.WriteLine(); 
}  }
}

  

共2页 首页 上一页 1 2 下一页 尾页 跳转到
相关内容
赞助商链接