Subversion Repositories programming

Rev

Show changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
108 7278 d 18 h ira / Adding licenses, as well as template programs for many languages.
Also, renamed test to skeleton to better reflect it's purpose.
 
100 7311 d 2 h irasnyd / Reorganization of school-related projects  
75 7350 d 19 h irasnyd /cs241/p1/ Just adding the headers.  
21 7542 d 19 h irasnyd /cs241/p1/ Rearranging Comments.  
20 7542 d 20 h irasnyd /cs241/p1/ Shortened toString() method.  
19 7542 d 20 h irasnyd /cs241/p1/ Removed comment block from Country.java  
18 7542 d 20 h irasnyd /cs241/p1/ Added a blank line at the end of HashTable.java
Added the Documentation file. (Documentation.txt)
Added the script output of a sample run (output.txt)
 
17 7542 d 21 h irasnyd /cs241/p1/ Cleaning up case statement  
16 7542 d 21 h irasnyd /cs241/p1/ Cleaning up tabs  
15 7544 d 20 h irasnyd /cs241/p1/ Delete some extraneous comments  
14 7545 d 0 h irasnyd /cs241/p1/ Added comments to TestHashTable  
13 7545 d 0 h irasnyd /cs241/p1/ Add the finished driver (TestHashTable)  
12 7545 d 1 h irasnyd /cs241/p1/ Getting set up for driver.

Added the Country class. (complete)
Added the file that will contain the driver.
 
11 7545 d 2 h irasnyd /cs241/p1/ Added statements to prettify the printing of probes.  
10 7545 d 2 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 7545 d 18 h irasnyd /cs241/p1/ Add support to keep track of collisions as the probing goes along.

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

Also add Precondition / Postcondition to all of HashTable.java
 
6 7559 d 1 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 7559 d 2 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