[PR #256] [MERGED] Added BFS algorithm #551

Open
opened 2026-01-29 15:13:41 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/256
Author: @PalAditya
Created: 9/14/2019
Status: Merged
Merged: 9/15/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (1)

📊 Changes

1 file changed (+188 additions, -0 deletions)

View changed files

data_structures/graphs/BFS.c (+188 -0)

📄 Description

Added the BFS algorithm in graphs section, which seems very lacking. Please review it and merge if found useful 😁

The Sample I/O from an execution is as below:

Run


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/256 **Author:** [@PalAditya](https://github.com/PalAditya) **Created:** 9/14/2019 **Status:** ✅ Merged **Merged:** 9/15/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`7e50d91`](https://github.com/TheAlgorithms/C/commit/7e50d9165f64ae109218cfabf3f3737babd8caff) Added BFS algorithm ### 📊 Changes **1 file changed** (+188 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/graphs/BFS.c` (+188 -0) </details> ### 📄 Description Added the **BFS** algorithm in **graphs** section, which seems very lacking. Please review it and merge if found useful 😁 The Sample I/O from an execution is as below: ![Run](https://user-images.githubusercontent.com/25523604/64909711-60db5d80-d72d-11e9-98c6-92c2b98b3da3.PNG) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:13:41 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#551