This repository contains implementations of various sorting algorithms in Java.
- Bubble Sort
- Selection Sort
- Insertion Sort
- Merge Sort
- Quick Sort
- Count Sort (with variations for positive numbers, HashMaps, and negative numbers)
- Radix Sort
To use any of the sorting algorithms, you can copy the respective method from src/Main.java
into your project. The main
method in src/Main.java
provides an example of how to use the countSort3
method.