Skip to content

Latest commit

 

History

History
24 lines (24 loc) · 473 Bytes

README.md

File metadata and controls

24 lines (24 loc) · 473 Bytes

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