Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 387 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 387 Bytes

DataStructures&Algorithms

  1. Top-k Largest Elements(from array)

  2. Sliding Window(longest substring without repeating characters)

  3. Backtracking(combination/target sum, word ladder, permutation, sudoku solver)

  4. Dynamic Programming(combination/target sum)

  5. DFS(implemented using stack(LIFO)) and BFS(implemented using queue(FIFO)) ex-Dijkstra's Algorithm, Topological sort