reverse_web Link_9raph(6): L'D', 5 ['c', 'a', 'b'] E ['e', 'b'] hash_map = {} for u, *v in G: # unpacking element of G; u will get first element ['a', 'c'] # and rest goes to list v for to in v: # for each element in v, means a link from 'u' -> 'to', if to not in hash_map: hash_map[to] = set() hash_map[to].add(u) Process finished with exit code # add it to hmap rev_g = [] # finally, merge key, value to a single list with same idea as in # original G for k, v in hash_map.items(): rev_g.append([k, *v]) return rev_g = [['a', 'b', 'c'], ['b', 'c', 'e'], ['c', 'b', 'a']] rev_g = reverse_weblink_graph(G) rint(*rev_g, sep='\n')

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...
icon
Related questions
Question

Computer Science

Can someone convert this python code to racket/scheme programming language.

def reverse_weblink_graph(G):
['b', 'a', 'c']
['c', 'a', "Ь']
['e', 'b']
hash_map =
{}
for u, *v in G:
# unpacking element of G; U will get first element
['a', 'с']
# and rest goes to list v
for to in V:
# for each element in v, means a link from 'U' -> 'to',
Process finished with exit code 0
if to not in hash_map:
# add it to hmap
hash_map[to] = set()
hash_map[to].add(u)
rev g =
[]
# finally, merge key, value to a single list with same idea as in
# original G
for k, v in hash_map.items():
rev_g.append ( [k, *v])
return rev_g
G =
[['a', 'b', 'c'], ['b', 'c', 'e'], ['c', 'b', 'a']]
rev_g = reverse_weblink_graph(G)
print(*rev_g, sep='\n')
Transcribed Image Text:def reverse_weblink_graph(G): ['b', 'a', 'c'] ['c', 'a', "Ь'] ['e', 'b'] hash_map = {} for u, *v in G: # unpacking element of G; U will get first element ['a', 'с'] # and rest goes to list v for to in V: # for each element in v, means a link from 'U' -> 'to', Process finished with exit code 0 if to not in hash_map: # add it to hmap hash_map[to] = set() hash_map[to].add(u) rev g = [] # finally, merge key, value to a single list with same idea as in # original G for k, v in hash_map.items(): rev_g.append ( [k, *v]) return rev_g G = [['a', 'b', 'c'], ['b', 'c', 'e'], ['c', 'b', 'a']] rev_g = reverse_weblink_graph(G) print(*rev_g, sep='\n')
Expert Solution
steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
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 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)
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
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY