2 Given a n*n adjacency array. it will give you a maximum flow. This version use BFS to search path. 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 Assume the first is the source and the last is the sink. Time complexity - O(Ef) example graph = [[0, 16, 13, 0, 0, 0], [0, 0, 10, 12, 0, 0], [0, 4, 0, 0, 14, 0], [0, 0, 9, 0, 0, 20], [0, 0, 0, 7, 0, 4], [0, 0, 0, 0, 0, 0]]
2 Given a n*n adjacency array. it will give you a maximum flow. This version use BFS to search path. 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 Assume the first is the source and the last is the sink. Time complexity - O(Ef) example graph = [[0, 16, 13, 0, 0, 0], [0, 0, 10, 12, 0, 0], [0, 4, 0, 0, 14, 0], [0, 0, 9, 0, 0, 20], [0, 0, 0, 7, 0, 4], [0, 0, 0, 0, 0, 0]]
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
![2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Given a n*n adjacency array.
it will give you a maximum flow.
This version use BFS to search path.
Assume the first is the source and the last is the sink.
Time complexity - 0(Ef)
example
graph [[0, 16, 13, 0, 0, 0],
[0, 0, 10, 12, 0, 0],
[0, 4, 0, 0, 14, 0],
[0, 0, 9, 0, 0, 20],
[0, 0, 0, 7, 0, 4],
[0, 0, 0, 0, 0, 0]]
answer should be
23
import copy
import queue
import math
def maximum_flow_bfs (adjacency_matrix):
Get the maximum flow through a graph using a breadth first search
#initial setting
new_array = copy.deepcopy (adjacency_matrix)
total = 0
while True:
#setting min to max_value
min_flow= math.inf
#save visited nodes
visited = [0]*len(new_array)
#save parent nodes
path = [0]*len(new_array)
#initialize queue for BFS
bfs = queue.Queue ()
#initial setting
visited[0] = 1
bfs.put(0)
#BFS to find path
while bfs.qsize() > 0:
#pop from queue
src = bfs.get()
for k in range (len(new_array)):
#checking capacity and visit
if(new_array[src] [k]> 0 and visited[k] == 0 ):
#if not, put into queue and chage to visit and save path
visited[k] = 1
bfs.put(k)
path[k] = src](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F3437af43-6a1b-4faa-a426-da58e71127ca%2F11eb9e6b-901d-4f0f-869d-93a536c7b8c9%2Fr2l6o1v_processed.png&w=3840&q=75)
Transcribed Image Text:2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Given a n*n adjacency array.
it will give you a maximum flow.
This version use BFS to search path.
Assume the first is the source and the last is the sink.
Time complexity - 0(Ef)
example
graph [[0, 16, 13, 0, 0, 0],
[0, 0, 10, 12, 0, 0],
[0, 4, 0, 0, 14, 0],
[0, 0, 9, 0, 0, 20],
[0, 0, 0, 7, 0, 4],
[0, 0, 0, 0, 0, 0]]
answer should be
23
import copy
import queue
import math
def maximum_flow_bfs (adjacency_matrix):
Get the maximum flow through a graph using a breadth first search
#initial setting
new_array = copy.deepcopy (adjacency_matrix)
total = 0
while True:
#setting min to max_value
min_flow= math.inf
#save visited nodes
visited = [0]*len(new_array)
#save parent nodes
path = [0]*len(new_array)
#initialize queue for BFS
bfs = queue.Queue ()
#initial setting
visited[0] = 1
bfs.put(0)
#BFS to find path
while bfs.qsize() > 0:
#pop from queue
src = bfs.get()
for k in range (len(new_array)):
#checking capacity and visit
if(new_array[src] [k]> 0 and visited[k] == 0 ):
#if not, put into queue and chage to visit and save path
visited[k] = 1
bfs.put(k)
path[k] = src
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 3 steps with 1 images

Recommended textbooks for you

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY