Subversion Repositories programming

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
11 7546 d 7 h irasnyd /cs241/p1/ Added statements to prettify the printing of probes.  
10 7546 d 7 h irasnyd /cs241/p1/ Fixed the nextProbe(int,int) method to add support for different types of probing.

The probe types are controlled by the private int probeType. This can be set using
the setProbeType(int) method. DONT FORGET TO SET IT EVERY TIME!
 
9 7546 d 23 h irasnyd /cs241/p1/ Add support to keep track of collisions as the probing goes along.

ONLY KEEPS TRACK OF COLLISIONS ON INSERT!
 
8 7546 d 23 h irasnyd /cs241/p1/ Add many probing types to the nextProbe() method. Still need to do double hashing, and clean up  
7 7547 d 0 h irasnyd /cs241/p1/ Adding many comments to HashTable.java

Also add Precondition / Postcondition to all of HashTable.java
 
6 7560 d 6 h irasnyd /cs241/p1/ implemented the book's Map interface in Map.java

Removed the dummy lines from Hashtable.java since we have a good Map implementation now.
 
5 7560 d 7 h irasnyd /cs241/p1/ imported HashTable.java from book / notes

had to add many dummy functions to get it to work without chap09.list03.Map