This is my starting pseudocode below:
Expand|Select|Wrap|Line Numbers
- public class HashedClass{
- int ticketNumber; // keyfield
- string purchaserName;
- Hashtable hashtable = new Hashtable();
- insert();
- fetch();
- delete();
- update();
- }
I want my application to store nodes for a stadium ticket application where the ticket numbers range from 2000 to 100,000 for a 60,000 seat stadium. The ticket number will be the key field and the nodes will also store the purchaser's name.