Python/data_structures/hashing/__init__.py
2018-03-20 20:48:58 -03:00

7 lines
142 B
Python

from .hash_table import HashTable
class QuadraticProbing(HashTable):
def __init__(self):
super(self.__class__, self).__init__()