retagged by
2,364 views
1 votes
1 votes
True / False?

1. For a directed graph, the absence of back edges with respect to a BFS tree implies that the graph is acyclic.

2. The depth of any DFS tree rooted at a vertex is at least as much as the depth of any BFS tree rooted at the same vertex.
retagged by

1 Answer

1 votes
1 votes

Both Statement are correct.

The below Image shows a Graph G and BFS is applied on G. and a back edge that shows a cycle.

Related questions

13.5k
views
1 answers
6 votes
MIRIYALA JEEVAN KUMA asked Jan 27, 2018
13,540 views
Consider the following statements:1. Let T be the DFS tree resulting from DFS traversal on a connected directed graph the root of the tree is an articulation point, iff i...
1.5k
views
1 answers
0 votes
Sandy Sharma asked Dec 25, 2018
1,522 views
True or False , with reason.For a directed graph, the absence of back edges with respect to a BFS tree implies that the graph is acyclic?Answer is FalseExplanation:FALSE....
676
views
1 answers
1 votes
rahul sharma 5 asked Oct 4, 2017
676 views
If in a given graph all edge weights are equal and negative then BFS will correctly find out single source shortest path to all vertices,starting from vertex v? True/Fals...
1.5k
views
0 answers
1 votes
Markzuck asked Dec 30, 2018
1,452 views
Can someone please explain what are the types of edges possible in BFS and DFS for DIRECTED as well as UNDIRECTED graphs?Individual meaning of BACK, FRONT and CROSS edges...