Python/data_structures/hashing/__init__.py

7 lines
142 B
Python
Raw Normal View History

2018-03-20 23:48:58 +00:00
from .hash_table import HashTable
class QuadraticProbing(HashTable):
def __init__(self):
super(self.__class__, self).__init__()