What would be one of the possible correct visitation orders of a BFS and DFS traversal for the following graph? (Dual directed edges indicate undirected edges)
source
5, 1, 0, 3, 2, 4 and 5, 3, 4, 2, 0, 1
5, 1, 3, 0, 2, 4 and 5, 4, 3, 2, 1, 0
5, 3, 1, 4, 0, 2 and 5, 1, 0, 3, 4, 2
5, 1, 0, 2, 3, 4 and 5, 3, 4, 2, 0, 1
None of the above