This laboratory assignment involves implementing a data structure called a map. A map associates objects called keys with other objects called values. It is implemented as a Java class that uses arrays internally.
1. Theory.
A map is a set of key-value pairs. Each key is said to be associated with its corresponding value, so there is at most one pair in the set with a given key. You can perform the following operations on maps.
You can test if a key has a value in the map.
You can add a new key-value pair to the map.
You can get the value that is associated with a given key.
You can change the value that is associated with a given key.
For example, the keys might be String’s that are the English
words for numbers. The values might be Integer’s that are the
numbers corresponding to those words. If you give the map an
English word (like "ten") then you can get back its corresponding
number (like 10).
The maps for this assignment use
arrays, and they work by doing linear search on those arrays. As a
result, if a map has n pairs, then its operations may need
at most O(n) key comparisons. However, there are
better ways to implement maps, using data structures that we have
not yet discussed in this course. These require only O(log
n) or even O(1) key comparisons.
2. Implementation.
You must write a Java class called Map that implements a map. To simplify grading, your class must use the same names for things that are given here. Your class Map must have two generic class parameters, Key and Value, so it looks like this. Here Key is the type of the map’s keys, and Value is the type of the map’s values.
class Map
{
⋮
}
Within the class Map, you must have two private arrays called
keys and values. The array keys must be an array whose base type is
the class parameter Key. The array values must be an array whose
base type is the class parameter Value. Suppose that a key
k is found at the index i in the array keys. Then
the value associated with k is found at the same index
i in the array values. Do not try to use only one array,
because that will not work.
You must also have a private integer
variable called count that records how many elements of the arrays
are being used. You may also need other private variables that are
not mentioned here.
Your class must have the following
methods. Most of them use count, keys, and values somehow. Some
methods are public and others are private. The private methods are
helpers for the public methods; they may make your code easier to
write. Also, any key may be null, and any value may be null. This
will affect how you test if keys are equal.
public Map(int length)
Constructor. If length is less than 0 then you must throw an IllegalArgumentException. Otherwise, initialize an empty Map whose keys and values arrays have length elements. (Recall that you must make arrays of Object’s, then cast them to the appropriate types.)
public Value get(Key key)
Search the array keys for an element that is equal to key. If that element is at some index in keys, then return the element at the same index in the array values. If there is no element equal to key in keys, then throw an IllegalArgumentException.
private boolean isEqual(Key leftKey, Key rightKey)
Test if leftKey is equal to rightKey. Either or both may be null. This method is necessary because you must use == when leftKey or rightKey are null, but you must use the equals method when both are not null. (Recall that null has no methods.)
public boolean isIn(Key key)
Test if there is an element in keys that is equal to key.
public void put(Key key, Value value)
Search the array keys for an element that is equal to key. If that element is at some index in keys, then change the element at the same index in values to value. If there is no element in keys that is equal to key, then add key to keys, and add value at the same index in values. If keys and values are full, so you cannot add key and value, then throw an IllegalStateException.
private int where(Key key)
Search the array keys for an element that is equal to key. Return the index of that element. If there is no element equal to key in keys, then return −1.
When you compile your program, you may see the following ‘‘warning’’ messages from javac. Ignore them. As discussed in the lectures, these messages appear because Java does not implement class parameters (the names between < and >) correctly.
Note: your file name.java uses unchecked or unsafe
operations.
Note: recompile with -Xlint:unchecked for details.
The file tests5.java on Canvas contains Java code that performs a series of tests, worth 40 points. Each test calls a public method from your class Map, and prints what the method returns. Each test is also followed by a comment that tells how many points it is worth, and what it must print if it works correctly. You may want to run additional tests, but you don’t get points for those.
below is the test.java
// Each test has a comment that shows what it should print and
how many points
// it is worth, for a total of 40 points.
//
// HOGWARTS. The Hogwarts dating service.
class Hogwarts
{
// MAIN. Make an instance of MAP and test it.
public static void main(String [] args)
{
Map map;
try
{
map = new Map(-5);
}
catch (IllegalArgumentException ignore)
{
System.out.println("No negatives"); // No negatives 2 points.
}
map = new Map(5);
map.put("Harry", "Ginny");
map.put("Ron", "Lavender");
map.put("Voldemort", null);
map.put(null, "Wormtail");
System.out.println(map.isIn("Harry")); // true 2 points.
System.out.println(map.isIn("Ginny")); // false 2 points.
System.out.println(map.isIn("Ron")); // true 2 points.
System.out.println(map.isIn("Voldemort")); // true 2 points.
System.out.println(map.isIn(null)); // true 2 points.
System.out.println(map.isIn("Joanne")); // false 2 points.
System.out.println(map.get("Harry")); // Ginny 2 points.
System.out.println(map.get("Ron")); // Lavender 2 points.
System.out.println(map.get("Voldemort")); // null 2 points.
System.out.println(map.get(null)); // Wormtail 2 points.
try
{
System.out.println(map.get("Joanne"));
}
catch (IllegalArgumentException ignore)
{
System.out.println("No Joanne"); // No Joanne 2 points.
}
map.put("Ron", "Hermione");
map.put("Albus", "Gellert");
map.put(null, null);
System.out.println(map.isIn(null)); // true 2 points.
System.out.println(map.isIn("Albus")); // true 2 points.
System.out.println(map.get("Albus")); // Gellert 2 points.
System.out.println(map.get("Harry")); // Ginny 2 points.
System.out.println(map.get("Ron")); // Hermione 2 points.
System.out.println(map.get("Voldemort")); // null 2 points.
System.out.println(map.get(null)); // null 2 points.
try
{
map.put("Draco", "Pansy");
}
catch (IllegalStateException minnesota)
{
System.out.println("No Draco"); // No Draco 2 points.
}
}
}
Hi,
below is the java code for the above implementation of map of key and value pair .
import java.util.*;
public class Demo {
public static void main(String args[]) {
// Create a hash map
HashMap hm = new HashMap();
// Put elements to the map
hm.put("Bag", new Integer(1100));
hm.put("Wallet", new Integer(700));
hm.put("Belt", new Integer(600));
// Get a set of the entries
Set set = hm.entrySet();
// Get an iterator
Iterator i = set.iterator();
// Display elements
while(i.hasNext()) {
Map.Entry me = (Map.Entry)i.next();
System.out.print(me.getKey() + ": ");
System.out.println(me.getValue());
}
System.out.println();
}
}
Note:- I have changed the names while implementing the code, you can use the original one.
Thank you!
Get Answers For Free
Most questions answered within 1 hours.