public class HashedClass{
int ticketNumber; // keyfield
string purchaserName;
Hashtable hashtable = new Hashtable();
insert();
fetch();
delete();
update();
}
I started a pseudocode above, but I know it needs more work. Are there any resources that can help guide me to implementing my own java hashed perfect algorithm? I know that you have to use the direct hashed four basic operation for each four methods, right? But how can I do that based on pseudocode?