Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 490 Bytes

File metadata and controls

6 lines (6 loc) · 490 Bytes
  • In this project, I analyzed the order of growth of Merge Sort and Insertion Sort Algorithms, and implemented the Quick Sort Algorithm.
  • The sorting_project.pdf file contains the Order of Growth analysis of Merge Sort and Insertion Sort.
  • The PersonSorter class contains a Quick Sort algorithm that sorts an array of Person type by last name then by date of birth.
  • It also contains the Merge Sort that sorts by date of birth as well as an Insertion Sort that sorts by last name.