[PR #854] [CLOSED] feat: add BFS,DFS algorithms using adjacency matrix #1358

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/854
Author: @ashwinshaji6679
Created: 8/27/2021
Status: Closed

Base: masterHead: new_branch


📝 Commits (1)

  • ec559e9 added file BFS_and_DFS to graphs folder

📊 Changes

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

View changed files

data_structures/graphs/BFS_and_DFS.c (+86 -0)

📄 Description

Description of Change

Added a file which performs BFS and DFS using adjacency matrix

Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md

References

Debasis Samanta,"Classical Data Structures",second edition,2009

Checklist

  • Added file name matches File name guidelines
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.

Notes:


🔄 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/854 **Author:** [@ashwinshaji6679](https://github.com/ashwinshaji6679) **Created:** 8/27/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `new_branch` --- ### 📝 Commits (1) - [`ec559e9`](https://github.com/TheAlgorithms/C/commit/ec559e9f437f620f21b005eeaeb7364939ab894b) added file BFS_and_DFS to graphs folder ### 📊 Changes **1 file changed** (+86 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/graphs/BFS_and_DFS.c` (+86 -0) </details> ### 📄 Description #### Description of Change Added a file which performs BFS and DFS using adjacency matrix Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md #### References Debasis Samanta,"Classical Data Structures",second edition,2009 #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. Notes: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/854"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <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:19:42 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1358