Algorithms
Algorithms copied to clipboard
Solve Issue #554 Implemented ShellSort
trafficstars
Changed the loop for copying the array to Systems.arraycopy() method in MergeSort.java Removed the unused import of java.util.* from HeapSort.java file Created A ShellSort.java file, which implements the ShellSort algorithm, explained inside the code. Created Tests for Shell Sort algorithm, which includes testing different cases. Added ShellSort algorithm to the SortingTest.