jnesfield / Intro-to-Algos

Working thru examples from intro to algos

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Working thru examples and algos from Introduction to Algorithms 3rd edition.

  • insertion sort
    • runs in o(n^2) in worst case
  • merge sort
    • runs in o(n log n) in worst case
  • quick sort
    • runs in o(n log n) in worst case, but is still technically o(n^2)
  • maximum subarray
    • runs in o(n log n) in worst case
  • heap sort
    • runs in o(n log n) in worst case
  • square mattrices
    • iterative runs in o(n^3)
    • strassen runs in o(n^2.81)

About

Working thru examples from intro to algos


Languages

Language:Jupyter Notebook 100.0%