https://www.geeksforgeeks.org/number-of-paths-from-source-to-destination-in-a-directed-acyclic-graph/
拓扑排序+动态规划,好厉害
Let f(u) be the number of ways one can travel from node u to destination vertex. ...
https://www.geeksforgeeks.org/roots-tree-gives-minimum-height/Given an undirected graph, which has tree characteristics (any connected graph without simple cycles is a tree.). It is possible to cho...
https://www.techiedelight.com/2-vertex-connectivity-graph/http://www.cs.rpi.edu/~goldberg/14-GT/08-block.pdf
无向图DFSWe can find Articulation points in a graph using Depth–first search (DFS).We can s...
defintions
unit network单位网络:每个顶点要么只有一条出边且容量为1,要么只有一条入边且容量为1
unit capacity network单位容量网络:所有边容量=1
reductions of problem versionundirected->directed
https://stackoverflow.com/questions/297416...