Javatpoint Logo
Javatpoint Logo

Edmonds Karp Algorithm in C++

The Edmonds-Karp algorithm is a powerful and efficient method for finding the maximum flow in a flow network, which is a directed graph where each edge has a capacity representing the maximum amount of flow it can carry. The algorithm builds upon the Ford-Fulkerson method but improves its worst-case time complexity.

At the core of the Edmonds-Karp algorithm is the use of Breadth-First Search (BFS) to find augmenting paths in the residual graph. The residual graph is a modified version of the original graph that reflects the remaining capacity on each edge after the current flow has been sent. By repeatedly finding augmenting paths and updating the flow along these paths, the algorithm converges to the maximum flow.

Key Insights:

The key insight of Edmonds-Karp is that using BFS to find augmenting paths ensures that the shortest paths in terms of the number of edges are considered first. This leads to a worst-case time complexity of O(VE^2), where V is the number of vertices and E is the number of edges. The use of BFS ensures that each augmenting path is of length at most O(VE), preventing the algorithm from running into the infinite loop issues that may arise with arbitrary augmenting path choices in the original Ford-Fulkerson method.

The algorithm starts with an initial flow of zero and repeatedly augments the flow until no more augmenting paths can be found. During each iteration, BFS is used to discover an augmenting path with available capacity. The bottleneck capacity of this path is then determined, and the flow along the path is updated accordingly. This process continues until no more augmenting paths exist, and the maximum flow is achieved.

Edmonds-Karp has become a widely adopted algorithm due to its simplicity, correctness, and the guarantee of a polynomial-time complexity. While there are more advanced algorithms for maximum flow, Edmonds-Karp remains an excellent choice for educational purposes and practical applications in scenarios where the graph sizes are manageable. The algorithm's reliance on BFS makes it particularly suitable for dense graphs or graphs with relatively low edge capacities.

History:

The Edmonds-Karp algorithm is a significant development in the field of computer science and graph theory, specifically designed to solve the maximum flow problem in network flow analysis. The algorithm is named after its inventors, Jack Edmonds and Richard Karp, and it was first published in 1972.

The history of the algorithm is closely tied to the broader context of network flow problems, which gained prominence in the mid-20th century. In the late 1940s and 1950s, researchers like George Dantzig and T.C. Koopmans explored problems related to transportation and flow within networks. The concept of maximum flow, which involves determining the maximum amount of material that can be transported through a network, became a central focus.

In the early 1970s, Jack Edmonds and Richard Karp independently worked on the maximum flow problem. Edmonds had earlier made significant contributions to matroid theory and optimization, while Karp was renowned for his work in complexity theory and algorithms. Their collaboration resulted in the Edmonds-Karp algorithm, an augmentation of the Ford-Fulkerson algorithm, which had been proposed by L.R. Ford Jr. and D.R. Fulkerson in 1956.

The Edmonds-Karp algorithm employs the idea of augmenting paths, where residual capacity in the network is increased along a path from the source to the sink. What distinguishes Edmonds-Karp is its use of breadth-first search (BFS) to find the augmenting path efficiently. This ensures that the algorithm's worst-case time complexity is polynomial, specifically O(VE^2), making it more predictable and reliable than the original Ford-Fulkerson algorithm.

The algorithm's introduction marked a crucial milestone in algorithmic design and graph theory, providing a more robust solution to the maximum flow problem. Over the years, it has found applications in various fields, including transportation, communication networks, and operations research. Its historical significance lies not only in its efficiency but also in its influence on subsequent research in network flow algorithms and related optimization problems.

Example:

Below is the implementation of Edmonds karp algorithm in C++:

Output:

Maximum Flow: 20
.................................
Process executed in 1.11 seconds
Press any key to continue

Explanation:

  1. Include Statements:
    • #include <iostream>: Includes the Input/Output Stream Library for input and output operations.
    • #include <climits>: Includes the Limits Library for using the INT_MAX
    • #include <cstring>: Includes the C String Library for string-related functions.
    • #include <queue>: Includes the Queue Library for using queues.
    • #include <vector>: Includes the Vector Library for dynamic array implementation.
  2. Namespace Declaration:
    • using namespace std;: Indicates the usage of the std (standard) namespace to simplify code referencing.
  3. Constants Declaration:
    • const int INF = INT_MAX;: Defines a constant INF with the maximum possible integer value.
    • const int MAX_V = 100;: Defines a constant MAX_V as the maximum number of vertices (adjust according to your needs).
  4. Global Variables:
    • int capacity[MAX_V][MAX_V];: Defines a 2D array to store the capacity of edges in the graph.
    • int parent[MAX_V];: Defines an array to store the parent of each vertex during the BFS traversal.
  5. BFS Function:
    • int bfs(int source, int sink, vector<vector<int>> &graph) { ... }: Implements Breadth-First Search to find augmenting paths in the graph.
    • Fills the parent array with -1 to indicate no parent initially.
    • Uses a queue to traverse the graph and find augmenting paths.
  6. Edmonds-Karp Function:
    • int edmondsKarp(int source, int sink, vector<vector<int>> &graph) { ... }: Implements the Edmonds-Karp algorithm for finding the maximum flow.
    • Calls the bfs function in a loop until no more augmenting paths can be found.
    • Updates the capacities and returns the maximum flow.
  7. Main Function:
    • int main() { ... }: Entry point of the program.
    • Example usage of the Edmonds-Karp algorithm.
    • Initializes source and sink vertices.
    • Creates an adjacency list representation (graph) based on the capacities defined in the capacity matrix.
    • Calls the edmondsKarp function to find the maximum flow.
    • Prints the result.
  8. Example Usage:
    • int source = 0;: Sets the source vertex for the flow network.
    • int sink = 5;: Sets the sink vertex for the flow network.
    • Creates an adjacency list representation (graph) based on the capacities defined in the capacity matrix.
    • Adds directed edges with capacities.
    • Calls the edmondsKarp function to find and print the maximum flow.
  9. Graph Initialization:
    • Loops through the capacity matrix to populate the adjacency list representation (graph).
    • If the capacity between vertices is greater than 0, adds the edge to the adjacency list.
  10. Output:
    • cout << "Maximum Flow: " << max_flow << endl;: Prints the maximum flow computed by the Edmonds-Karp algorithm.

Time and Space Complexity Analysis

The Edmonds-Karp algorithm is a variant of the Ford-Fulkerson method for finding the maximum flow in a network. Here's a time and space complexity analysis of the provided C++ code.

Time Complexity:

  • Breadth-First Search (BFS): The main loop of the algorithm consists of a series of BFS operations, where each BFS operation traverses the graph in a layer-wise manner. The worst-case time complexity of BFS on an adjacency list representation of the graph is O(V + E), where V is the number of vertices and E is the number of edges. In each iteration, BFS is used to find an augmenting path from the source to the sink.
  • Iterations: In the worst case, the Edmonds-Karp algorithm may need to iterate through all edges in the residual graph until no augmenting paths are found. In each iteration, BFS is applied, and since BFS takes O(V + E) time, the worst-case time complexity of the algorithm is O(VE^2), where V is the number of vertices and E is the number of edges.
  • Capacity Updates: In each iteration, the algorithm updates the capacities of the residual graph along the augmenting path. Updating the capacities takes constant time per edge.

Overall, the time complexity of the Edmonds-Karp algorithm is dominated by the BFS operations, resulting in O(VE^2) in the worst case.

Space Complexity:

  • Graph Representation: The space complexity is primarily determined by the graph representation. In this implementation, an adjacency list is used to represent the graph. The adjacency list is stored in the graph vector, which has a size of O(V + E), where V is the number of vertices and E is the number of edges.
  • Parent Array: The parent array is used to trace the augmenting path found by BFS. The size of the parent array is O(V), where V is the number of vertices.
  • Capacity Matrix: The capacity matrix represents the capacities of edges in the graph. Its size is O(V^2), where V is the number of vertices.
  • Queue: The BFS algorithm uses a queue to keep track of vertices to be visited. In the worst case, all vertices may be enqueued, leading to a space complexity of O(V).
  • Considering all these components, the overall space complexity of the Edmonds-Karp algorithm is O(V + E).

In summary, the Edmonds-Karp algorithm provides a polynomial-time solution for finding the maximum flow in a flow network. Its time complexity is reasonable for small to moderately sized graphs, and its space complexity is also manageable. However, for large graphs, more advanced algorithms like the Push-Relabel algorithm might be more suitable.

Applications of Edmonds Karp Algorithm

The Edmonds-Karp algorithm, a variant of the Ford-Fulkerson algorithm, has found diverse applications across various fields due to its efficiency in solving the maximum flow problem. Here are some notable applications:

Network Flow Optimization:

The primary application of the Edmonds-Karp algorithm is in network flow optimization. It is widely used in transportation and logistics to model and optimize the flow of goods, ensuring efficient utilization of resources and minimizing transportation costs.

Communication Networks:

In the design and management of communication networks, such as the internet, the Edmonds-Karp algorithm can be applied to optimize data flow. It aids in determining the maximum amount of data that can be transmitted through different routes, improving network efficiency.

Resource Allocation in Computing Systems:

The algorithm is employed in computing systems to optimize resource allocation. In scenarios where multiple processes or applications compete for resources, Edmonds-Karp helps allocate resources in a way that maximizes overall system performance.

Water and Energy Distribution:

In water supply and energy distribution networks, the algorithm can be utilized to optimize the flow of resources, ensuring that water and energy reach their destinations efficiently. This is crucial for urban planning and managing scarce resources.

Supply Chain Management:

Edmonds-Karp is applied in supply chain management to optimize the flow of goods through distribution networks. It helps in determining the most efficient routes for transporting goods from manufacturers to consumers, minimizing costs and maximizing throughput.

Image Segmentation:

In computer vision, the algorithm has been adapted for image segmentation. By treating pixels as nodes and using the algorithm to find paths of maximum flow, it helps identify and separate distinct objects in an image.

Biological and Medical Applications:

The algorithm is employed in biological research to model processes like blood circulation in the human body. In medical imaging, it aids in analyzing and optimizing the flow of contrast agents or other substances through biological systems.

Game Theory:

Edmonds-Karp has been applied in modeling and solving certain problems in game theory, particularly in scenarios involving strategic interactions and resource allocation among players.

In summary, the Edmonds-Karp algorithm's versatility has led to its adoption in a wide range of applications, contributing to more efficient and optimized solutions in various domains. Its ability to handle network flow problems efficiently has made it a valuable tool in both theoretical research and practical implementations.

Advantages and Disadvantages

The Edmonds-Karp algorithm, an extension of the Ford-Fulkerson algorithm, is a widely used method for finding the maximum flow in a flow network. Flow networks are essential in various applications, such as transportation systems, communication networks, and resource allocation. The Edmonds-Karp algorithm, like any algorithm, comes with its set of advantages and disadvantages, which we'll explore in detail.

Advantages:

1. Guaranteed Convergence:

One of the key advantages of the Edmonds-Karp algorithm is its guaranteed convergence to the maximum flow in a finite number of iterations. This is due to the use of the augmenting paths with the shortest possible length, which ensures that the algorithm terminates efficiently.

2. Polynomial Time Complexity:

The Edmonds-Karp algorithm has a polynomial time complexity of O(VE^2), where V is the number of vertices and E is the number of edges. This polynomial time complexity makes it more efficient than some other algorithms for finding maximum flow, especially in sparse graphs.

3. Ease of Implementation:

The algorithm is relatively straightforward to implement, making it accessible for developers and researchers. Its simplicity contributes to its popularity in both academic and practical applications.

4. Breadth-First Search (BFS) Approach:

Edmonds-Karp employs a Breadth-First Search (BFS) strategy to find augmenting paths. This ensures that the shortest augmenting paths are considered first, leading to quicker convergence in practice.

5. Applicability to Bipartite Matching:

The algorithm can be adapted for solving the maximum bipartite matching problem efficiently. This makes it versatile, as bipartite matching has applications in fields like job assignment, resource allocation, and network flow.

6. Network Flows with Integral Capacities:

Edmonds-Karp performs well in scenarios where all capacities are integers. This is an important consideration in applications where fractional capacities might not make sense, such as the number of cars on a road or the capacity of a communication link.

Disadvantages:

1. Space Complexity:

The algorithm requires the storage of residual capacities for each edge. In dense graphs or networks with large capacities, the space complexity can become a concern. It is particularly relevant when dealing with networks with a high number of vertices and edges.

2. Dependence on Integer Capacities:

While Edmonds-Karp is effective with integral capacities, it may not perform optimally in scenarios where capacities are real numbers or where floating-point arithmetic is involved. In such cases, rounding errors may affect the accuracy of the results.

3. Vulnerability to Large Capacities:

The algorithm's time complexity can become impractical when dealing with networks with large capacities. The square factor in the time complexity (O(VE^2)) can lead to longer computation times, especially when E is large.

4. Non-Optimal for Networks with Small Flows:

In networks where the maximum flow is significantly smaller than the total flow capacity of the network, the algorithm might be overkill. There are more specialized algorithms that could perform better in such scenarios.

5. Dependence on BFS for Path Selection:

While BFS ensures convergence, it may not always select the most optimal augmenting paths. In certain cases, it can result in a suboptimal flow, especially when alternative paths with larger capacities exist.

6. Sensitivity to Input Order:

The order in which the edges are processed can influence the performance of the algorithm. In some cases, different input orders may lead to different running times, affecting the repeatability of results.

Conclusion:

In conclusion, the Edmonds-Karp algorithm has several advantages, including guaranteed termination, efficiency in practice for sparse graphs, optimality, versatility, and a straightforward residual graph representation. However, its performance on dense graphs, space complexity, sensitivity to initial flow, and limitations with non-integer capacities and negative edge weights should be considered when choosing an algorithm for a specific application. It is essential to weigh these factors against the requirements and characteristics of the particular flow network being analyzed to determine the suitability of the Edmonds-Karp algorithm or alternative approaches.


Next TopicFallthrough in C++





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA