apHelper stores auxiliary data used to identify articulation points in a graph.
| 5 | |
| 6 | // apHelper stores auxiliary data used to identify articulation points in a graph. |
| 7 | type apHelper struct { |
| 8 | isAP []bool |
| 9 | visited []bool |
| 10 | childCount []int |
| 11 | discoveryTime []int |
| 12 | earliestDiscovery []int |
| 13 | } |
| 14 | |
| 15 | // ArticulationPoint identifies articulation points in a graph. It returns a boolean slice |
| 16 | // where each element indicates whether a vertex is an articulation point. |
nothing calls this directly
no outgoing calls
no test coverage detected