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.
Posted on March 31st, 2008 by Baker Franke
Filed under: Labs | No Comments »
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 […]
Posted on March 18th, 2008 by Baker Franke
Filed under: Labs | No Comments »
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 […]
Posted on March 11th, 2008 by Baker Franke
Filed under: Labs | No Comments »
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 […]
Posted on March 3rd, 2008 by Baker Franke
Filed under: Labs | No Comments »