Lab22 :: Quick HashMap - Due: MEOM Wed. April 2

Implement your own HashMap…quickly!
Do this Lab with a partner.
Starting Files: Lab22_QuickHashMap_stuDistro.zip
Grading: Does it pass all the tests?  If yes, A.  Otherwise,  depends on severity of problem.
Turning it in:
Important: Rename the project folder: lab22.username1.username2
Zip it up and put it in my Dropbox by the due date.

Lab Activity - Java Bat

So as we head into the break I thought I’d show you a great review tool that I found:
http://www.javabat.com

 Today: Do as many exercises in javabat as you can in the period.  It’s fun to see how many you can rip throuhg. You may want to set up an account so it can keep track of […]

Intro to Grid World - Mar. 12,14

This essentially comprises an actual laboratory exercise. You will not have to turn this in, but if you don’t do this you will be totally lost when we do more advanced work with the Grid World that you will have to turn in. So, that being said, here you go….
1. Here is the […]

Lab 21 - part deux :: BST / Map - due. Fri. Mar. 7

Implement the APMap interface with your BST implementation (see below)
Assignment Sheet: Lab21_CharCount_part2.pdf
Create a new class in your CharCount project and copy and paste the APMap interface into it. This is the interface you should implement with your BST.
public interface APMap{
public boolean containsKey(Object key);
public Object get(Object key);
public Object put(Object key, Object val);
public […]