Assignment #5 - Maps
This assignment may seem easy, but it requires strong OO design. You
should read through the assignment to get a basic idea of the requirements
and then start working through the assignment in the recommended order.
Objectives:
The main objectives of this assignment are:
- Continue to analyze data structures using @TimeComplexity annotations.
- Build more advanced data structures.
- Practice reusing code to save time and energy.
- Provide you with a data structure implemented three different ways which can be used later in the semester.
- Develop test cases to verify your own code.
The Assignment:
The Concept:
Write a Unordered Map, a Lookup Table, a Hash Table and a multimap.
The first three does not allow duplicate keys. The put(k,v) method
replace the value if k exists, otherwise it will insert. The multimap supports
entries with duplicate keys.
- Unordered Map - Use ArrayList or DoublyLinkedList to store the
data. Data in the list is unordered.
- LookupTable - Use ArrayList to store the data. Data in the array is ordered, binary search should be used to find a entry.
- HashTable - Use an array of Unordered Map to store the data. Pretty good at both insert and search. For this lab, use
chaining method for collision-handling.
- Multimap - Allow multiple entries to have the same key. The multimap can be implemented based on the HashTable. In HashTable, each key has one value. For multimap, each key is associated with a list of values. Therefore a multimap can be viewed as a HashTable.
Your Job:
Code up a unsorted map, sorted map, a hash table, and a multimap. You may use
code from your previous assignments to complete these. You will be
responsible for testing the code yourself, instead of being given a test platform.
Again, this assignment does not depends on previous assignments
directly, but you will find some similar code from previous
assignments that can be copy-pasted.
Getting Started (and Getting Finished):
- Download and import the following zip file: Assignment5.zip. For Eclipse:
- Open Eclipse
- Choose "File → Import"
- Select the "General" category
- Pick "Existing Projects into Workspace"
- Click on "Next"
- Select the button for "Select Archive File" and browse to/select the zip file.
- Click on "Finish"
- A new project SimpleMap has been added to the workspace
- The major files in the project SimpleMap
- UnorderedMap.java - you need to implement this MAP ADT.
- LookupTable.java - you need to implement this SortedMAP ADT.
- HashMap.java - you need to implement this MAP ADT.
- HashMultiMap.java - you need to implement this MAP that support entries with duplicate keys.
-
Complete the UnorderedMap by using ArrayList or
DoublyLinked List.
-
Complete the LookupTable by using ArrayList
- Complete the HashMap by using ArrayList instantiated
with a fixed size - the size of your hash table. Finish
UnorderedMap first before you start this one.
- You can use either Division method or MAD method to create the
hash value.
- Use the chaining scheme to handle collision.
- Each element in the ArrayList is an Unordered map.
- Complete the HashMultiMap by using allowing multiple
entries have the same keys. Finish the HashMap first before you
work on this one.
Submission:
First, look at the following checklist:
- Does the program compile on CS machines? (Programs that don't compile for us will not be graded)
-
Do not ever import from java.util. If so, be sure you only
import allowed components (like Iterator, Exceptions, etc.). Unless
the assignment specifically mentions it is permissible, you should never include
any of java's native data structures.
- Does the program meet all required interfaces?
- Do all your methods have a @TimeComplexity indicator?
-
If any methods have a good amortized or expected cost, do they have both
the @TimeComplexity and either @TimeComplexityAmortized or @TimeComplexityExpected
- Do you provide adequate TCJ comments to prove your time complexity?
-
Is the indentation easily readable? You can have Eclipse correct indentation
by highlighting all code and select "Source → Correct Indentation".
-
Have you removed any of the "cs2321" comments (/*#) that you
may have accidentally copy/pasted?
- Are comments well organized and concise?
If you have reviewed your code and all the criteria on the checklist are acceptable,
follow the submission procedure.
Grading Criteria:
-
An UnorderedMap,LookupTable, HashMap, andHashMultiMap
using the code given, correctly implementing all methods and interfaces: 80 (20 points each)
- Correct documentation of time complexity: 10
- Clear concise code with good commenting: 10
- Getting program done early: 0 points, but you feel good about yourself
FAQ
- How to get hash code of any object? Use
Math.abs(object.hashcode()).