Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.54 KB

Algorithm_readme.md

File metadata and controls

53 lines (38 loc) · 1.54 KB

可视化算法


  1. 排序 选择 , SORT
  2. Graph Search
  3. MST, Shortest Path
  4. 图 Min Cut
  5. Heap , Priority Queue
  6. Binary Search Tree
  7. hash
  8. Symbol Table 实现, HASH
  9. Dynamic Programming
  10. Monte Carlo Tree Search

  1. Algorithm on String
  2. Algorithm on Graph


solved problem method graph comments
connected component DFS undirected graph
connectivity DFS undirected graph
topology sort DFS DAG sink vertex
strongly connected component DFS directed graph reverse G, sink component
shortest path Dijkstra graph
shortest path Bellman-Ford negative weighted edge
MST Kruskal undirected graph
MST Prim undirected graph
shortest path in social network Bidirectional Dijkstra graph

More applications

problem method graph comments
Is a graph bipartite DFS undirected graph
does the graph exist a cycle DFS graph