You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tech-interview-handbook/contents/algorithms/__template__.md

893 B

  • introduction.md
  • array.md
  • string.md
  • sorting-searching.md
  • recursion.md
  • hash-table.md
  • linked-list.md
  • stack.md
  • queue.md
  • matrix.md
  • graph.md
  • interval.md
  • tree.md
  • heap.md
  • trie.md
  • geometry.md
  • math.md
  • dynamic-programming.md
  • binary.md

Introduction

TODO

Implementations

Language API
C++
Java
Python
JavaScript

Time complexity

TODO

Operation Big-O Note
Access O(n)
Search O(n)
Insert O(1)
Remove O(1)

Learning resources

TODO

Corner cases

TODO

Things to look out for during interviews

TODO

Techniques

TODO

TODO