Created
April 27, 2014 05:58
-
-
Save gabhi/11338577 to your computer and use it in GitHub Desktop.
Hashtable implementation using arrays
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HashEntry { | |
private int key; | |
private int value; | |
HashEntry(int key, int value) { | |
this.key = key; | |
this.value = value; | |
} | |
public int getKey() { | |
return key; | |
} | |
public int getValue() { | |
return value; | |
} | |
} | |
public class HashMap { | |
private final static int TABLE_SIZE = 128; | |
HashEntry[] table; | |
HashMap() { | |
table = new HashEntry[TABLE_SIZE]; | |
for (int i = 0; i < TABLE_SIZE; i++) | |
table[i] = null; | |
} | |
public int get(int key) { | |
int hash = (key % TABLE_SIZE); | |
while (table[hash] != null && table[hash].getKey() != key) | |
hash = (hash + 1) % TABLE_SIZE; | |
if (table[hash] == null) | |
return -1; | |
else | |
return table[hash].getValue(); | |
} | |
public void put(int key, int value) { | |
int hash = (key % TABLE_SIZE); | |
while (table[hash] != null && table[hash].getKey() != key) | |
hash = (hash + 1) % TABLE_SIZE; | |
table[hash] = new HashEntry(key, value); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment