Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 465 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 465 Bytes

leetcode

ds

  • LinkedList: 24, 141, 206
  • Stack && Queue: 20, 225, 232
  • Priority Queue: 703
  • Heap: 239
  • HashTable/Set: 1, 15, 242,
  • Tree && Binary Tree && Binary Search Tree: 98, 235, 236

al

  • recursion
  • divide & conquer: 50, 169
  • greedy: 122
  • bfs & dfs: 102, 22
  • backtracking: 51, 52, 36, 37
  • binary search: 69
  • trie:
  • bitwise: 191, 231, 338
  • dynamic programming: 70, 120, 152, 121, 122, 123, 309, 188, 714, 300, 322, 71
  • union-find: 200, 547