Skip to content

Latest commit

 

History

History
20 lines (20 loc) · 354 Bytes

README.md

File metadata and controls

20 lines (20 loc) · 354 Bytes

About

A reference for common data structures and algorithms. Covers:

  1. Arrays
    • Sorting algorithms
    • Binary search
  2. Stacks
    • monotonic stacks
  3. Linked lists
    • traversal
    • appending
    • pre-pending
    • reversing
    • merging
  4. Trees
    • traversal (iterative and recursive)
    • search
    • maximum depth
  5. Tries