A comprehensive collection of sorting algorithm implementations in Java, including Merge Sort, Quick Sort, Bubble Sort, Selection Sort, and Insertion Sort. Each algorithm is encapsulated in its own class for modularity and ease of use.
JavaSortingAlgorithms/ ├── .gitignore ├── SortingMain.java ├── MergeSort.java ├── QuickSort.java ├── BubbleSort.java ├── SelectionSort.java └── InsertionSort.java