Skip to content

Instantly share code, notes, and snippets.

@KodjoSuprem
KodjoSuprem / The Technical Interview Cheat Sheet.md
Last active November 8, 2016 23:28 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Data Structure Basics

####When to use collection container?

  • Consider complexity of operations (insert , search, etc..)
  • Use cases (order matter, FIFO, etc...)
  • Memory footprint

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.