mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #510] [MERGED] added more graph algos & Makefile, fixed som return non-void func errors #926
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 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:
master← Head:more-graph-algos📝 Commits (1)
fd52c9fadded 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
graphsdirFix 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.