[PR #365] [CLOSED] Adding Graph Algorithms #716

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/365
Author: @pmba
Created: 10/7/2019
Status: Closed

Base: masterHead: master


📝 Commits (7)

  • e8da4c7 Added solution to leetcode problem 190 in C
  • 5a6ed8e Added Solution to leetcode Problem 191
  • 1f88545 Added solution to Leetcode Problem 461
  • d2ad4b0 Revert "Added Solution to leetcode Problem 191"
  • 08f62bf Commented code to explain algorithms in 190 and 191
  • 972d4fa Merge pull request #327 from SaurusXI/master
  • 3169cff add graph algorithms

📊 Changes

19 files changed (+880 additions, -0 deletions)

View changed files

graph-algorithms/.gitignore (+2 -0)
graph-algorithms/Makefile (+43 -0)
graph-algorithms/README.md (+56 -0)
graph-algorithms/algorithms/dijkstra.c (+94 -0)
graph-algorithms/algorithms/ford_fulkerson.c (+122 -0)
graph-algorithms/algorithms/kruskal.c (+71 -0)
graph-algorithms/algorithms/prim.c (+82 -0)
graph-algorithms/includes/builder.h (+9 -0)
graph-algorithms/includes/graph.h (+42 -0)
graph-algorithms/includes/pqueue.h (+23 -0)
graph-algorithms/includes/union_find.h (+11 -0)
graph-algorithms/input.txt (+8 -0)
graph-algorithms/sources/builder.c (+59 -0)
graph-algorithms/sources/graph.c (+113 -0)
graph-algorithms/sources/pqueue.c (+78 -0)
graph-algorithms/sources/union_find.c (+42 -0)
📝 leetcode/README.md (+2 -0)
leetcode/src/190.c (+13 -0)
leetcode/src/191.c (+10 -0)

📄 Description

  • Prim
  • Kruskal
  • Ford Fulkerson
  • Dijkstra

🔄 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/365 **Author:** [@pmba](https://github.com/pmba) **Created:** 10/7/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (7) - [`e8da4c7`](https://github.com/TheAlgorithms/C/commit/e8da4c7714fe2ae92f91e13d93dcce74b319bc7a) Added solution to leetcode problem 190 in C - [`5a6ed8e`](https://github.com/TheAlgorithms/C/commit/5a6ed8e245e7544fce060d92919a353393bfd064) Added Solution to leetcode Problem 191 - [`1f88545`](https://github.com/TheAlgorithms/C/commit/1f88545538b0a3f7e96a999748f0dee5d21af6cb) Added solution to Leetcode Problem 461 - [`d2ad4b0`](https://github.com/TheAlgorithms/C/commit/d2ad4b0109c02ca61e1f4f918d7ac3d66526b4f2) Revert "Added Solution to leetcode Problem 191" - [`08f62bf`](https://github.com/TheAlgorithms/C/commit/08f62bf39782a1b6b7a57a33a6de94bdbb991236) Commented code to explain algorithms in 190 and 191 - [`972d4fa`](https://github.com/TheAlgorithms/C/commit/972d4fad7ae85d300ef77f3bbdf83b1efcbd5a2f) Merge pull request #327 from SaurusXI/master - [`3169cff`](https://github.com/TheAlgorithms/C/commit/3169cff78e42586362e8a5d82bee454aa999d5a3) add graph algorithms ### 📊 Changes **19 files changed** (+880 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `graph-algorithms/.gitignore` (+2 -0) ➕ `graph-algorithms/Makefile` (+43 -0) ➕ `graph-algorithms/README.md` (+56 -0) ➕ `graph-algorithms/algorithms/dijkstra.c` (+94 -0) ➕ `graph-algorithms/algorithms/ford_fulkerson.c` (+122 -0) ➕ `graph-algorithms/algorithms/kruskal.c` (+71 -0) ➕ `graph-algorithms/algorithms/prim.c` (+82 -0) ➕ `graph-algorithms/includes/builder.h` (+9 -0) ➕ `graph-algorithms/includes/graph.h` (+42 -0) ➕ `graph-algorithms/includes/pqueue.h` (+23 -0) ➕ `graph-algorithms/includes/union_find.h` (+11 -0) ➕ `graph-algorithms/input.txt` (+8 -0) ➕ `graph-algorithms/sources/builder.c` (+59 -0) ➕ `graph-algorithms/sources/graph.c` (+113 -0) ➕ `graph-algorithms/sources/pqueue.c` (+78 -0) ➕ `graph-algorithms/sources/union_find.c` (+42 -0) 📝 `leetcode/README.md` (+2 -0) ➕ `leetcode/src/190.c` (+13 -0) ➕ `leetcode/src/191.c` (+10 -0) </details> ### 📄 Description - Prim - Kruskal - Ford Fulkerson - Dijkstra --- <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:14:45 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#716