-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathopen-addressing-1.py
151 lines (116 loc) · 4.13 KB
/
open-addressing-1.py
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Copyright (C) Deepali Srivastava - All Rights Reserved
# This code is part of DSA course available on CourseGalaxy.com
class InvalidOperationException(Exception):
pass
class studentRecord:
def __init__(self,i,Name):
self.studentId = i
self.studentName = Name
def get_student_id(self):
return self.studentId
def set_student_id(self,i):
self.studentId = i
def __str__(self):
return str(self.studentId) + " " + self.studentName
class HashTable:
def __init__(self,tableSize=11):
self.m = tableSize
self.array = [None] * self.m
self.n = 0
def hash1(self, key):
return (key % self.m)
def rehash(self, new_size):
temp = HashTable(new_size)
for i in range(self.m):
if self.array[i] != None and self.array[i].get_student_id() != -1:
temp.insert(self.array[i])
self.array = temp.array
self.m = new_size
def insert1(self, newRecord):
if self.n >= self.m//2:
self.rehash( self.next_prime(2*self.m) )
print("New Table Size is : " , self.m )
self.insert(newRecord)
def insert(self, newRecord):
key = newRecord.get_student_id()
h = self.hash1(key)
location = h
for i in range(1,self.m):
if self.array[location] is None or self.array[location].get_student_id() == -1:
self.array[location] = newRecord
self.n+=1
return
if self.array[location].get_student_id() == key:
raise InvalidOperationException("Duplicate key")
location = (h + i) % self.m
def next_prime(self,x):
while self.is_prime(x) is not True:
x=x+1
return x
def is_prime(self, x):
for i in range(2,x):
if x % i == 0:
return False
return True
def search(self,key):
h = self.hash1(key)
location = h
for i in range(1,self.m):
if self.array[location] is None :
return None
if self.array[location].get_student_id() == key:
return self.array[location]
location = (h + i) % self.m
return None
def display_table(self):
for i in range(self.m):
print("[",end=''); print(i,end=''); print("]",end='');
if self.array[i] is not None and self.array[i].get_student_id() != -1:
print(self.array[i])
else:
print("___")
def delete(self,key):
h = self.hash1(key)
location = h
for i in range(1,self.m):
if self.array[location] is None:
return
if self.array[location].get_student_id() == key:
self.array[location].set_student_id(-1)
self.n-=1
if self.n > 0 and self.n <= self.m/8:
self.rehash(self.next_prime(self.m//2))
print( "New Table Size is : " ,self.m )
location = (h + i) % self.m
#################################################################################
size = int(input("Enter initial size of table : "))
table = HashTable(size)
while True:
print("1.Insert a record")
print("2.search a record")
print("3.delete a record")
print("4.Display table")
print("5.Exit")
option = int(input("Enter your option : "))
if option == 1:
id = int(input("Enter student id : "))
name = input("Enter student name : ")
aRecord = studentRecord(id,name)
table.insert1(aRecord)
elif option == 2:
idd = int(input("Enter a key to be searched : "))
aRecord = table.search(id)
if aRecord is None:
print("Key not found")
else:
print(aRecord)
elif option == 3:
id = int(input("Enter a key to be deleted :"))
table.delete(id)
elif option == 4:
table.display_table()
elif option == 5:
break
else:
print("Wrong option")
print()