Implementations of sorting algorithms using Java.
--
Pre-requisites:
- java (v1.8)
- gradle (v3.3)
Import the files code-style.xml and formatter.xml into your IDE.
gradle clean coberturaCheck check
# Test summary will be located at `build/reports/tests/test/index.html`
# Coverage report will be located at `build/reports/cobertura/index.html`.
# Code style issues report will be located at `build/reports/checkstyle/main.html`
gradle clean assemble
- Insertion Sort
- Selection Sort
- Shellsort
- Merge Sort
-- Recursive
-- Iterative - Quick Sort
- Quick Select