[PR #510] [MERGED] added more graph algos & Makefile, fixed som return non-void func errors #926

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/510
Author: @ttuanho
Created: 1/17/2020
Status: Merged
Merged: 5/14/2020
Merged by: @cclauss

Base: masterHead: more-graph-algos


📝 Commits (1)

  • fd52c9f added more grah algos & Makefile, fixed som return non-void func errors

📊 Changes

13 files changed (+686 additions, -1 deletions)

View changed files

data_structures/graphs/Graph.c (+102 -0)
data_structures/graphs/Graph.h (+37 -0)
data_structures/graphs/Makefile (+56 -0)
data_structures/graphs/bfsQueue.c (+81 -0)
data_structures/graphs/dfsRecursive.c (+74 -0)
data_structures/graphs/euler.c (+82 -0)
data_structures/graphs/hamiltonian.c (+87 -0)
📝 data_structures/graphs/kruskal.c (+1 -1)
data_structures/graphs/queue.c (+88 -0)
data_structures/graphs/queue.h (+26 -0)
📝 data_structures/graphs/strongly_connected_components.c (+2 -0)
📝 data_structures/graphs/topologicalSort.c (+2 -0)
data_structures/graphs/transitiveClosure.c (+48 -0)

📄 Description

  • Added

    • Graph & queue models
    • DFS recursive algo
    • BFS using additional queue
    • Makefile for graphs dir
    • Finding Euler & Hamilton path algo
  • Fix some no return for non-void functions in other previous files


🔄 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/510 **Author:** [@ttuanho](https://github.com/ttuanho) **Created:** 1/17/2020 **Status:** ✅ Merged **Merged:** 5/14/2020 **Merged by:** [@cclauss](https://github.com/cclauss) **Base:** `master` ← **Head:** `more-graph-algos` --- ### 📝 Commits (1) - [`fd52c9f`](https://github.com/TheAlgorithms/C/commit/fd52c9f2c653ce4ac6c35815d7554a45efe52ac3) added more grah algos & Makefile, fixed som return non-void func errors ### 📊 Changes **13 files changed** (+686 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/graphs/Graph.c` (+102 -0) ➕ `data_structures/graphs/Graph.h` (+37 -0) ➕ `data_structures/graphs/Makefile` (+56 -0) ➕ `data_structures/graphs/bfsQueue.c` (+81 -0) ➕ `data_structures/graphs/dfsRecursive.c` (+74 -0) ➕ `data_structures/graphs/euler.c` (+82 -0) ➕ `data_structures/graphs/hamiltonian.c` (+87 -0) 📝 `data_structures/graphs/kruskal.c` (+1 -1) ➕ `data_structures/graphs/queue.c` (+88 -0) ➕ `data_structures/graphs/queue.h` (+26 -0) 📝 `data_structures/graphs/strongly_connected_components.c` (+2 -0) 📝 `data_structures/graphs/topologicalSort.c` (+2 -0) ➕ `data_structures/graphs/transitiveClosure.c` (+48 -0) </details> ### 📄 Description - Added - Graph & queue models - DFS recursive algo - BFS using additional queue - Makefile for `graphs` dir - Finding Euler & Hamilton path algo - Fix some no return for non-void functions in other previous files --- <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:16:17 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#926