Sort the given array using the bubble sort? int[] a = { 8, 3, 11, 34, 43, 1, 67, 35, 98 };
Ritesh Singh
Select an image from your device to upload
public static string BubbleSort() { int[] arr = { 78, 55, 45, 98, 13 }; int temp; for (int j = 0; j <= arr.Length - 2; j++) { for (int i = 0; i <= arr.Length - 2; i++) { if (arr[i] > arr[i + 1]) { temp = arr[i + 1]; arr[i + 1] = arr[i]; arr[i] = temp; } } } Console.WriteLine("Sorted:"); foreach (int p in arr) Console.Write(p + " "); Console.Read(); }
public static string BubbleSort()
{
int[] arr = { 78, 55, 45, 98, 13 };
int temp;
for (int j = 0; j <= arr.Length - 2; j++)
for (int i = 0; i <= arr.Length - 2; i++)
if (arr[i] > arr[i + 1])
temp = arr[i + 1];
arr[i + 1] = arr[i];
arr[i] = temp;
}
Console.WriteLine("Sorted:");
foreach (int p in arr)
Console.Write(p + " ");
Console.Read();