/****************Bubble Sort**************/
public class BubbleSorter
{
public static void Sort(int[] list)
{
int i,j;
for(i=0;i<list.Length;i++)
{
for (j = 0; j < list.Length -1-i; j++)
{
if (list[j] > list[j + 1])
{
int temp = list[j];
list[j] = list[j + 1];
list[j + 1] = temp;
}
}
}
}
}
/*****************Selection Sort*************/
public class SelectionSorter
{
public static void Sort(int[] list)
{
int i,