bubble sort algorithm c#.net

bubble sort algorithm c#.net

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();
        }
    }

}
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

bubble sort algorithm c#.net bubble sort algorithm c#.net Reviewed by Anil Singh on 2:19 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^