AlgoGenesis / C

AlgoGenesis is a centralized open-source platform dedicated to providing optimized and well-documented algorithm implementations in C. Perfect for both beginners and advanced users, this repository serves as a comprehensive learning resource for solving algorithmic challenges.
MIT License
79 stars 246 forks source link

[NEW ALGORITHM] Edmonds-Karp #674

Closed sandeepmaddheshiya closed 1 week ago

sandeepmaddheshiya commented 1 week ago

Name:

Edmonds-Karp Algorithm

About:

The Edmonds-Karp Algorithm is an implementation of the Ford-Fulkerson method for computing the maximum flow in a flow network. It uses Breadth-First Search (BFS) to find augmenting paths, ensuring that the shortest path in terms of the number of edges is selected in each iteration. This guarantees a polynomial time complexity of O(V * E^2), making it a reliable algorithm for solving flow network problems efficiently.


Labels:

new algorithm, gssoc-ext, hacktoberfest, level1


Assignees:

@pankaj-bind please assign to me, i'll do it asap!.

pankaj-bind commented 1 week ago

Do not create unnecessary Issues until you complete the previous one.