Category Archives: Sorting&Searching

Different Sorting algorithms code

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Sample1 {     class SortingAlgorithms     {         static void Main()         {             int[] a = { 23, 45, 65, 23, 12, 77 };             //int[] a = { 1, … Continue reading

Posted in Sorting&Searching | Leave a comment