Skip to content

Latest commit

 

History

History
103 lines (76 loc) · 6.99 KB

File metadata and controls

103 lines (76 loc) · 6.99 KB

TypeScript-Algorithms-and-Data-Structures

Collection of classical algorithms and data structures in TypeScript.

For each folder, there is an MD file with my main References for that section. But my favorite ones are:


Data Structures

Basics:
Trees:
Heaps:
Hash Tables:
Disjoint-set (Union-Find):
  • Karger Minimum Cut
  • BFS
  • Undirected connectivity
  • DFS
  • Topological Sorting
  • Kosaraju Strongly Connected Components
  • Dijkstra
  • Prim
  • Kruskal
  • Bellman-Ford
  • Floyd-Warshall
  • Johnson (APSP)
  • Ford-Fulkerson

To visualize some Pathfinding Algorithms check: Pathfinding Visualizer

Sorting

To visualize some of them check Sorting Visualizer

Divide and Conquer

Greedy

Dynamic Programming