TheAlgorithms-Python/data_structures/hashing/__init__.py

7 lines
142 B
Python
Raw Normal View History

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