This repository contains C implementations of popular sorting algorithms. These algorithms are fundamental in computer science and are often used for sorting data efficiently.
- Bubble Sort: 0-bubble_sort.c
- Insertion Sort: 1-insertion_sort.c
- Selection Sort: 2-selection_sort.c
- Quicksort: 3-quicksort.c
bubble_sort.c: Implementation of the Bubble Sort algorithm.insertion_sort.c: Implementation of the Insertion Sort algorithm.selection_sort.c: Implementation of the Selection Sort algorithm.quicksort.c: Implementation of the Quicksort algorithm.