Write a method called reverse that accepts a map from strings to strings as a parameter and
Question:
Write a method called reverse that accepts a map from strings to strings as a parameter and returns a new map that is the reverse of the original. The reverse of a map is a new map that uses the values from the original as its keys and the keys from the original as its values. Since a map’s values need not be unique but its keys must be, you should have each value map to a set of keys. In other words, if the original map maps keys of type to values of type, the new map should map keys of type to values that are Sets containing elements of type . For example, the map {42 = Marty, 81 = Sue, 17 = Ed, 31=Dave, 56=Ed, 3=Marty, 29 = Ed} has a reverse of {Marty=[42, 3], Sue = [81], Ed = [17, 56, 29], Dave = [31]}. (The order of the keys and values does not matter.)
Step by Step Answer:
Building Java Programs A Back To Basics Approach
ISBN: 9780135471944
5th Edition
Authors: Stuart Reges, Marty Stepp