Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 344 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 344 Bytes

Algorithms

Algorithms useful for CS graduates

Data Structures

  • Segment Tree
  • Binary Indexed Tree/ Fenwick Tree

Graphs

  • BFS
  • DFS
  • KruskalMST
  • PrimMST
  • Dijkstra
  • Topological Sort

Mathematics

  • nCr
  • Generate all combinations
  • Sieve of Eratosthenes
  • Matrix Exponentiation

Strings

  • Z-Algorithm
  • KMP
  • Rabin Karp