Implementations of sorting algorithms using Java.
Pre-requisites:
- docker (17.12.0-ce)
- docker-compose (1.18.0)
docker-compose up
# Head over http://localhost to open the IDE.
gradle clean cobertura 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
- Quick Sort
- Heap Sort