106
правок
Изменения
м
→Простая реализация
y = h2(item.key)
'''for''' (i = 0..m)
'''if''' table[x] == '''null'''
table[x] = item
'''return'''
y = h2(key)
'''for''' (i = 0..m)
'''if''' table[x] != '''null'''
'''if''' table[x].key == key
'''return''' table[x]
'''else'''
'''return''' '''null'''
x = (x + y) '''mod''' m
'''return''' '''null'''
===Реализация с удалением===