2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 16:22:14 +00:00
Files
graph/example/bfs.expected

17 lines
195 B
Plaintext

0 --> 2
1 --> 1 3 4
2 --> 1 3 4
3 --> 1 4
4 --> 0 1
0 --> 2
1 --> 1 3 4
2 --> 1 3 4
3 --> 1 4
4 --> 0 1
distances: 0 2 1 2 2
parent[0] = 0
parent[1] = 2
parent[2] = 0
parent[3] = 2
parent[4] = 2