Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 254 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 254 Bytes

find_pset3

Randomly generates numbers for that are sorted and searched. For practicing sorting and searching from Harvard's cs50x course.

Sort function is standard bubble sort with O n^2. Search is a recursive binary search with O log(n).