Breadth-first search

From WikiMD's Wellness Encyclopedia

Breadth-first-tree
Animated_BFS
Error creating thumbnail:
BFS-Algorithm_Search_Way
Error creating thumbnail:
Tic-tac-toe-game-tree
MapGermanyGraph
Error creating thumbnail:
GermanyBFS

Algorithm for searching a tree or graph


Template:Algorithm


Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the root (or an arbitrary node in the case of a graph) and explores the neighbor nodes at the present depth prior to moving on to nodes at the next depth level.

Algorithm[edit | edit source]

The BFS algorithm works as follows:

  1. Start by placing the root node in a queue.
  2. Mark the root node as visited.
  3. While the queue is not empty:
    1. Remove the node at the front of the queue.
    2. For each of the node's neighbors:
      1. If the neighbor has not been visited:
        1. Mark it as visited.
        2. Add it to the queue.

Properties[edit | edit source]

  • Completeness: BFS is complete, meaning it will find a solution if one exists.
  • Optimality: BFS is optimal if all edges have the same cost.
  • Time complexity: The time complexity of BFS is O(V + E), where V is the number of vertices and E is the number of edges.
  • Space complexity: The space complexity of BFS is O(V), where V is the number of vertices.

Applications[edit | edit source]

BFS is used in various applications, including:

Pseudocode[edit | edit source]

Here is a pseudocode representation of the BFS algorithm:

``` BFS(G, start_vertex):

 create a queue Q
 enqueue start_vertex onto Q
 mark start_vertex as visited
 while Q is not empty:
   current_vertex = dequeue Q
   for each neighbor of current_vertex:
     if neighbor has not been visited:
       mark neighbor as visited
       enqueue neighbor onto Q

```

Related Algorithms[edit | edit source]

See Also[edit | edit source]

Related Pages[edit | edit source]

WikiMD
Navigation: Wellness - Encyclopedia - Health topics - Disease Index‏‎ - Drugs - World Directory - Gray's Anatomy - Keto diet - Recipes

Search WikiMD

Ad.Tired of being Overweight? Try W8MD's physician weight loss program.
Semaglutide (Ozempic / Wegovy and Tirzepatide (Mounjaro / Zepbound) available.
Advertise on WikiMD

WikiMD's Wellness Encyclopedia

Let Food Be Thy Medicine
Medicine Thy Food - Hippocrates

Medical Disclaimer: WikiMD is not a substitute for professional medical advice. The information on WikiMD is provided as an information resource only, may be incorrect, outdated or misleading, and is not to be used or relied on for any diagnostic or treatment purposes. Please consult your health care provider before making any healthcare decisions or for guidance about a specific medical condition. WikiMD expressly disclaims responsibility, and shall have no liability, for any damages, loss, injury, or liability whatsoever suffered as a result of your reliance on the information contained in this site. By visiting this site you agree to the foregoing terms and conditions, which may from time to time be changed or supplemented by WikiMD. If you do not agree to the foregoing terms and conditions, you should not enter or use this site. See full disclaimer.
Credits:Most images are courtesy of Wikimedia commons, and templates Wikipedia, licensed under CC BY SA or similar.

Contributors: Prab R. Tumpati, MD