About 75,200 results
Open links in new tab
  1. Breadth-First Search (BFS) | Brilliant Math & Science Wiki

    Breadth-first search (BFS) is an important graph search algorithm that is used to solve many problems including finding the shortest path in a graph and solving puzzle games (such as Rubik's …

  2. Breadth First Search or BFS for a Graph - GeeksforGeeks

    Jan 16, 2026 · Breadth First Search (BFS) is a graph traversal algorithm that starts from a source node and explores the graph level by level. First, it visits all nodes directly adjacent to the source. Then, it …

  3. Discrete Mathematics Tutorial - GeeksforGeeks

    Sep 1, 2025 · Discrete Mathematics is a branch of mathematics that is concerned with "discrete" mathematical structures instead of "continuous" ones. Discrete mathematical structures include …

  4. BFS Graph Algorithm (With code in C, C++, Java and Python)

    Breadth first traversal or Breadth first Search is a recursive algorithm for searching all the vertices of a graph or tree data structure. In this tutorial, you will understand the working of bfs algorithm with …

  5. Breadth First Search - Algorithms for Competitive Programming

    Last update: October 13, 2024 Translated From: e-maxx.ru Breadth-first search Breadth first search is one of the basic and essential searching algorithms on graphs. As a result of how the algorithm …

  6. Breadth First Search (BFS) Algorithm - Online Tutorials Library

    Breadth First Search (BFS) algorithm starts at the tree root and explores all nodes at the present depth prior to moving on to the nodes at the next depth level. As in the example given above, BFS …

  7. Types of Graphs with Examples - GeeksforGeeks

    Oct 27, 2025 · Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school …

  8. Breadth First Search (BFS) Algorithm with EXAMPLE - Guru99

    Sep 26, 2024 · What is BFS Algorithm (Breadth-First Search)? Breadth-first search (BFS) is an algorithm that is used to graph data or searching tree or traversing structures. The full form of BFS is …

  9. Graph Traversal (Depth/Breadth First Search) - VisuAlgo

    Given a graph, we can use the O (V+E) DFS (Depth-First Search) or BFS (Breadth-First Search) algorithm to traverse the graph and explore the features/properties of the graph.

  10. Applications of Discrete Mathematics - GeeksforGeeks

    Aug 8, 2025 · Discrete mathematics is a branch of mathematics that deals with objects that can assume only distinct, separated values, in contrast to continuous mathematics, which deals with objects that …