| Modifier and Type | Field | Description |
|---|---|---|
private HashNode |
HashNode.next |
Holds the reference to the next HashNode in the linked list
|
private HashNode[] |
TTT_HC.winners |
The winners array which will store the Strings of all the possible
TicTacToe winners using HashNodes
|
| Modifier and Type | Method | Description |
|---|---|---|
HashNode |
HashNode.getNext() |
Returns the HashNode after the current one in the array.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
HashNode.setNext(HashNode h) |
Sets the values of the next HashNode in the array using a given
HashNode.
|
| Constructor | Description |
|---|---|
HashNode(int h,
java.lang.String t,
HashNode n) |
Creates a HashNode object using a hash code and a String value and setting
the next HashNode in the linked-list
|