Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 575 Bytes

File metadata and controls

10 lines (6 loc) · 575 Bytes

SortingAlgorithms

This is the Java implementation for the sorting algorithms: Bubble, Insertion, Shell, Selection, and Merge sort. They are nice to have on hand!

Here is a chart of the performance speeds for all off the algorithms where the X-value represents the number of elements in an array being tested and the Y-value is the avg runtime in milliseconds.

Screen Shot 2023-02-12 at 9 11 43 PM

note: SortingAlgorithm is the interface for all algorithm classes