November 28, 2012Data Structures using C Language, Sorting Sorting – Insertion sort Insertion Sort Sorts a set of records by comparing the next record with all the previous elements. Compare next element with previous. […]
November 27, 2012Data Structures using C Language, Sorting Sorting – Bubble sort Bubble sort: Two consecutive elements are compared. It sorts the elements in right to left fashion. Thus, (n-i) comparisons are made. Example: […]
November 25, 2012Data Structures using C Language, Sorting Sorting – Shell sort Shell Sort: Shell sort is quite similar to that of insertion sort with the only difference that in shell sort, higher values […]