public void BubbleSort(int[] intArray)
{
Console.WriteLine("==========UnSorted Array Input===============");
for (int i = 0; i < intArray.Length; i++)
{
Console.WriteLine(intArray[i]);
}
for (int i = intArray.Length - 1; i > 0; i--)
{
for (int j = 0; j <= i - 1; j++)
{
if (intArray[j] > intArray[j + 1])
{
int highValue = intArray[j];
intArray[j] = intArray[j + 1];
intArray[j + 1] = highValue;
}
}
}
Console.WriteLine("==========Sorted Array Using BubbleSort===============");
for (int i = 0; i < intArray.Length; i++)
{
Console.WriteLine(intArray[i]);
}
} Bubble Sort Output:
|