strivedi4u / hacktoberfest2024

This repository is for beginners who want to contribution in open source Hacktoberfest 2024.This project is designed to promote learning and growth in the field of software development. It offers a range of coding challenges and projects that cover various topics, from basic algorithms to complex application development.
Apache License 2.0
82 stars 533 forks source link

11. Breadth-First Search (BFS) #15

Open strivedi4u opened 1 month ago

strivedi4u commented 1 month ago

Description: Implement Breadth-First Search (BFS) traversal for a graph. Input: A graph represented as an adjacency list. Output: Print the nodes in the order of BFS traversal. Example:

Input: Graph = {0: [1, 2], 1: [2], 2: [0, 3], 3: [3]}  
Output: 0 -> 1 -> 2 -> 3
Tanishka534 commented 1 month ago

Please assign this issue to me

strivedi4u commented 1 month ago

⭐ If you find this repository helpful, please give it a star! ⭐

rajbodhak commented 1 month ago

/assign