Sorting is a fundamental operation in computer science, enabling efficient data retrieval and organization. It is used in various applications, such as database management, data analysis, and user ...
This project implements four sorting algorithms in Rust: Quick Sort, Selection Sort, Insertion Sort, and Merge Sort. Each algorithm is implemented as a separate function in the sorting_library crate.