Hello everyone, I am going to share the code sample for the bubble sort algorithms using c# with console application as given below.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
public class BubbleSort
{
static void Main(string[] args)
{
BubbleSort ob = new BubbleSort();
int[] arr = new int[] { 213, 32, 392, 352, 43, 332, 435, 345, 432, 5 };
int i;
int j;
int tempVal;
int q;
q = arr.Length;
for (i = (q - 1); i >= 0; i--)
{
for (j = 1; j <= i; j++)
{
if (arr[j - 1] > arr[j])
{
tempVal = arr[j - 1];
arr[j - 1] = arr[j];
arr[j] = tempVal;
}
}
}
for (int p = 0; p < q; p++)
{
Console.WriteLine(arr[p]);
}
Console.Read();
}
}
}