Recent questions tagged breadth-first-search

1 votes
0 answers
4
Consider the following graph.How many nodes (apart from $s$) does the Breadth First Search algorithm discover before discovering $t$ when starting from $s$.
0 votes
1 answer
5
Please list the problems where BFS alone can do and DFS alone can do and both can do??
0 votes
0 answers
6
Can we use BFT for finding no. of connected components in a directed as well as undirected graph?
1 votes
2 answers
14
0 votes
1 answer
17
Are the "n!" ways maximum possible BFS sequences ? ( Indirectly, for any given vertices is it obvious that complete graph will give max BFS sequences ? )
1 votes
0 answers
18
Does Back Edges in both BFS and DFS leads to cycle in a directed graph? Please elaborate.
0 votes
1 answer
20
HOW CAN WE GET A CROSS EDGE WHILE PERFORMING A BFS ON UNDIRECTED AND DIRECTED GRAPH CAN ANYONE SHOW WITH AN EXAMPLE?
0 votes
0 answers
22
WHAT ARE THE VARIOUS EDGES POSSIBLE DURING BFS ?
0 votes
1 answer
23
Maximum number of BFS Traversal Possible on BST of height 3 is ..........
0 votes
1 answer
25
Which does this sentence mean?In BFS of an undirected graph, there are no back edge and no forward edge.
4 votes
0 answers
26
0 votes
0 answers
27
Anyone, please explain briefly!Applying BFS on the undirected graph gives you twin pointer.