answersLogoWhite

0


Best Answer

takes a lot of time because you will have to go through all the parent nodes before going to the children nodes

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the disadvantages of breadth first search?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Breadth First search is used in?

stacks


What is the difference between breadth first search and depth first search in C programming?

Both algoritms can be build very similary. The difference between breadth-first search and depth-first search is order in which elements ar added to OPEN list. In breadth-first search new nodes are appended to the end of OPEN list In depth-first search new nodes are inserted in the begining of OPEN list


How to detect binary search tree as depth first search or breadth first search?

O(N-1)


8 Queens Problem using Breadth First Search and Depth First Search?

1 3


Is breadth first search bidirectional?

It can be. It depends on the structure and how it is implemented.


What is the advantage of iterative deepening search over depth-first?

Iterative deepening effectively performs a breadth-first search in a way that requires much less memory than breadth-first search does. So before explaining the advantage of iterative deepening over depth-first, its important to understand the difference between breadth-first and depth-first search. Depth first explores down the tree first while breadth-first explores all nodes on the first level, then the second level, then the third level, and so on. Breadth-first search is ideal in situations where the answer is near the top of the tree and Depth-first search works well when the goal node is near the bottom of the tree. Depth-first search has much lower memory requirements. Iterative deepening works by running depth-first search repeatedly with a growing constraint on how deep to explore the tree. This gives you you a search that is effectively breadth-first with the low memory requirements of depth-first search. Different applications call for different types of search, so there's not one that is always better than any other.


Difference between breadth first and depth first search in artificial intelligence?

diference between depth first search and breath first search in artificial intelellegence


Which data structure is used for breadth first seach?

Breadth first search can be performed upon any tree-like structure. A binary tree is a typical example. A breadth first search begins at the root and searches the root's children, then all its grandchildren, and so on, working through one level of the tree at a time.


How do you print all data in a Binary Search Tree?

By using Depth First Search or Breadth First search Tree traversal algorithm we can print data in Binary search tree.


What are the real world applications of breadth first search and depth first search?

It is help to:find cities connected with roads.modeling air traffic controller system.


Among best and breadth first search which algorithm has the property that if a wrong path is selected it can be corrected afterwards?

Best-first.


What graph traversal algorithm uses a queue to keep track of vertices which need to be processed?

Breadth-first search