in DS edited by
3,980 views
2 votes
2 votes

$G$ is an undirected graph with vertex set $\{v1, \ v2, \ v3, \ v4, \ v5, \ v6, \ v7\}$ and edge set $\{v1v2,\ v1v3,\ v1v4\ ,v2v4,\ v2v5,\ v3v4,\ v4v5,\ v4v6,\ v5v6,\ v6v7\ \}$. A breadth first search of the graph is performed with $v1$ as the root node. Which of the following is a tree edge?

  1. $v2v4$
  2. $v1v4$
  3. $v4v5$
  4. $v3v4$
in DS edited by
by
4.0k views

3 Answers

1 vote
1 vote

Here in the below page, we can see that v1v4, v4v5 both can be a tree edge. It depends on what we are selecting first as a node to traverse if after v1 v4 is selected then v4v5 would also be a tree edge.


3 Comments

V1V4 edge is the only edge which you will find in any BFS traversal.

Other edges which is given in option will present based on which order you have traversed
1
1

See here it is asked which will be a tree edge  not that which would be common for all and also one more thing only v4v5 could be the other option .Other two can never be the edge of the tree for root node being 1

0
0

As you can see even here  v4v5 can be an edge of the tree.

1
1
0 votes
0 votes

Of all the given options, Option is only possible.

2 Comments

This is BFS, not DFS. There is an edge from V1 to V4, hence the tree edge
0
0
Answer should be B. v1v4
0
0
0 votes
0 votes

V1 is adjacent to V2,V3,V4 

so queue state will be

V1 V2 V3 V4 V5

After V1 is popped the queue will contain V2 V3 V4 and V5

Note: the above elements can appear in any order after V1

so, V4 can be popped first and you may think that the answer is V4V5. But here V2 V3 and V5 can also be popped first. so V4V5 may be an edge which will not be included in the BFS tree(as V2 also has an edge to V5).

But V1V4 edge will always be included in the BFS tree as we have taken V1 as the root.

So, answer is b)V1V4

 

 

Answer:

Related questions