strong_components.expected 423 B

1234567891011121314151617181920212223
  1. A directed graph:
  2. a --> b f h
  3. b --> c a
  4. c --> d b
  5. d --> e
  6. e --> d
  7. f --> g
  8. g --> f d
  9. h --> i
  10. i --> h j e c
  11. j -->
  12. Total number of components: 4
  13. Vertex a is in component 3
  14. Vertex b is in component 3
  15. Vertex c is in component 3
  16. Vertex d is in component 0
  17. Vertex e is in component 0
  18. Vertex f is in component 1
  19. Vertex g is in component 1
  20. Vertex h is in component 3
  21. Vertex i is in component 3
  22. Vertex j is in component 2