Summary of Class 15 DAG -- Topological Sorting (USACO 4.4)
“To improve is to change; to be perfect is to change often.” ― Winston S. Churchill Version Control (or Revision control or source control): Version Control System (VCS) Concurrent Version System (CVS) Subversion (SVN) git command: git add . (or file) git commit -m "msg" git push origin <branch-name> https://services.github.com/on-demand/downloads/github-git-cheat-sheet/ Review of SCC, DFS, BFS SCC: A digraph is strongly connected if every two vertices are mutually reachable . A strong component of a digraph G is a maximal strongly connected subdigraph of G. Equivalently, a strong component is a subdigraph induced on a maximal set of mutually reachable vertices. Graph DFS: stack-based : (for loop with visited vertices) tree edge, forward edge ...