Direct Chaning Coding by Hashing


DirectChaining.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.chung;
import java.util.LinkedList;

public class DirectChaining {
LinkedList<String>[] hashTable;
int maximumChainSize = 5;

DirectChaining() {
hashTable = new LinkedList[13];
}//end of method


// HashFunction to be used on Keys
public int simpleASCIIHashFunction(String x, int M) {
char ch[];
ch = x.toCharArray();
int i, sum;
for (sum = 0, i = 0; i < x.length(); i++) {
sum = sum + ch[i];
}
// System.out.println("Index from hashfunction: " + sum % M);
return sum % M;
}// end of method



//Insert Key in HashTable
public void insertKeyInHashTable(String value) {
int newIndex = simpleASCIIHashFunction(value, hashTable.length); //returns in which index we need to store this string
if(hashTable[newIndex] == null) {
System.out.println("Index: " + newIndex + " is empty. Creating a new LinkedList there...");
hashTable[newIndex] = new LinkedList<String>();
hashTable[newIndex].add(value);
System.out.println("Successfully inserted " + "\"" + value + "\"" + " in location: " + newIndex);
System.out.println("-------------------------------------------\n");
}else {
System.out.println("\nIndex: " + newIndex + " is having sufficient space. Inserting there...");
hashTable[newIndex].add(value);
System.out.println("Successfully inserted " + "\"" + value + "\"" + " in location: " + newIndex);
System.out.println("-------------------------------------------\n");
}
}//end of method



//Search for a given key in hashTable
public boolean searchKeyInHashTable(String stringToBeSearched) {
int newIndex = simpleASCIIHashFunction(stringToBeSearched, hashTable.length);
if (hashTable[newIndex] != null && hashTable[newIndex].contains(stringToBeSearched)) {
System.out.println("\n" + "\"" + stringToBeSearched + "\"" + " found in HashTable at location: "+newIndex);
return true;
}else {
System.out.println("\n" + "\"" + stringToBeSearched + "\"" + " not found in HashTable.");
return false;
}
}//end of method



//Delete key from HashTable
public void deleteKeyFromHashTable(String stringToBeDeleted) {
int newIndex = simpleASCIIHashFunction(stringToBeDeleted, hashTable.length);
if (hashTable[newIndex] != null && hashTable[newIndex].contains(stringToBeDeleted)) {
System.out.println("\n" + "\"" + stringToBeDeleted + "\"" + " has been found in HashTable." );
hashTable[newIndex].remove(stringToBeDeleted);
System.out.println("\"" + stringToBeDeleted + "\"" + " has been deleted from HashTable !" );
}else {
System.out.println("\nCould not find " + "\"" + stringToBeDeleted + "\"" + " in HashTable");
}
}//end of method



// display the hash table
public void displayHashTable() {
if(hashTable == null) {
System.out.println("\nHashTable does not exits !");
return;
}else {
System.out.println("\n---------- HashTable ---------");
for (int i = 0; i < hashTable.length; i++) {
System.out.println("Index: " + i + ", key: " + hashTable[i]);

}
}
} //end of method


// Deletes entire HashTable
public void deleteHashTable() {
hashTable = null;
System.out.println("Successfully deleted HashTable !");
}// end of method

}//end of class

Main.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.chung;

public class DirectChainingMain {

public static void main(String[] args) {

// Constructor
DirectChaining directChaining = new DirectChaining();

directChaining.insertKeyInHashTable("The");
directChaining.insertKeyInHashTable("quick");
directChaining.insertKeyInHashTable("brown");
directChaining.insertKeyInHashTable("fox");
directChaining.insertKeyInHashTable("over");
directChaining.insertKeyInHashTable("lazy");
directChaining.displayHashTable();

directChaining.insertKeyInHashTable("fox"); // use for showing collision
directChaining.displayHashTable();

directChaining.insertKeyInHashTable("fox");
directChaining.displayHashTable();

directChaining.insertKeyInHashTable("fox");
directChaining.displayHashTable();

directChaining.insertKeyInHashTable("fox");
directChaining.displayHashTable();

/*
* DirectChaining.insertKeyInHashTable("fox");
* DirectChaining.displayHashTable();
*
* DirectChaining.insertKeyInHashTable("fox");
* DirectChaining.displayHashTable();
*
* DirectChaining.insertKeyInHashTable("fox");
* DirectChaining.displayHashTable();
*
* DirectChaining.insertKeyInHashTable("fox");
* DirectChaining.displayHashTable();
*
*
* DirectChaining.searchKeyInHashTable("jump");
* DirectChaining.searchKeyInHashTable("brown");
*
*
* DirectChaining.deleteKeyFromHashTable("jump");
* DirectChaining.deleteKeyFromHashTable("quick");
* DirectChaining.displayHashTable();
*
*
* DirectChaining.deleteHashTable();
* DirectChaining.displayHashTable();
*/

}// end of method

}// end of class

출처 : “Data Structures & Algorithms” by DS GUY