Data-Structures-and-Algorithms icon indicating copy to clipboard operation
Data-Structures-and-Algorithms copied to clipboard

My code solution for Andrei Neagoie's online udemy course "Master the Coding Interview: Data Structures + Algorithms"

Data-Structures-and-Algorithms

Data structures

  1. Array
  2. Graphs
  3. Hash tables (HashMap)
  4. Linked Lists 5 Queues
  5. Stacks
  6. BST

Algorithms

  1. Recursion
    1. Factorial
    2. Fibonacci - Includes a simple recursive with time complexity of O(n)
    3. ReverseString
  2. Sorting
    1. Bubble sort
    2. Selection sort
    3. Insertion sort
    4. Merge sort
    5. Quick sort

Dynamic programming

  1. Dynamic Fibonacci

Interview Questions

  1. Common items