C Algorithms
Buble Sort - In bubble sorting algorithm, we arrange the elements of the list by forming pairs of adjacent elements.
Quicksort Algorithm - Quicksort sorts a list based on the divide and conquer strategy. In quicksort algorithm we divide the list into two sub-lists, sort these sub-lists and recursively until the list is sorted.
Selection Sort Algorithm - Selection sort is a simplicity sorting algorithm which sorts elements of a list by selection.
