[PR #71] [MERGED] Add shortest path algorithm #296

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/71
Author: @arpanjain97
Created: 10/12/2017
Status: Merged
Merged: 1/15/2018
Merged by: @christianbender

Base: masterHead: master


📝 Commits (4)

📊 Changes

3 files changed (+348 additions, -0 deletions)

View changed files

data_structures/graphs/Bellman-Ford.c (+130 -0)
data_structures/graphs/Dijkstra.c (+114 -0)
data_structures/graphs/Floyd-Warshall.c (+104 -0)

📄 Description

The PR includes following algorithms:
1.Dijkstra's
2.Bellman-Ford
3.Floyd-Warshall


🔄 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/71 **Author:** [@arpanjain97](https://github.com/arpanjain97) **Created:** 10/12/2017 **Status:** ✅ Merged **Merged:** 1/15/2018 **Merged by:** [@christianbender](https://github.com/christianbender) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`909f00c`](https://github.com/TheAlgorithms/C/commit/909f00c6051eedb43ec4feaacf5cb6c1e22aee02) Add Dijkstra's Algorithm - [`901b5c2`](https://github.com/TheAlgorithms/C/commit/901b5c2ba82d2fbf3c72b30a3181e129b271e384) Add Bellman-Ford Algorithm - [`1e9c4a5`](https://github.com/TheAlgorithms/C/commit/1e9c4a5610dfc5e636d6604717df4b0fecee2e03) Add Floyd-Warshall Algorithm - [`5e8dbc0`](https://github.com/TheAlgorithms/C/commit/5e8dbc06d048b43692f3961923795001d947230a) Fix output display ### 📊 Changes **3 files changed** (+348 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/graphs/Bellman-Ford.c` (+130 -0) ➕ `data_structures/graphs/Dijkstra.c` (+114 -0) ➕ `data_structures/graphs/Floyd-Warshall.c` (+104 -0) </details> ### 📄 Description The PR includes following algorithms: 1.Dijkstra's 2.Bellman-Ford 3.Floyd-Warshall --- <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:11:13 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#296