-- Mar 17 In-Class Exercise Thread
insert 1
hash table: [0:[], 1:[1], 2:[]]
insert 2
hash table: [0:[], 1:[1], 2:[2]]
insert 3
hash table: [0:[3], 1:[1], 2:[2]]
insert 4
hash table: [0:[3], 1:[1, 4], 2:[2]]
insert 5
hash table: [0:[3], 1:[1, 4], 2:[2, 5]]
insert 6
hash table: [0:[3, 6], 1:[1, 4], 2:[2, 5]]
lookup 6
hash table: [0:[6, 3], 1:[1, 4], 2:[2, 5]]
lookup 6
hash table: [0:[6, 3], 1:[1, 4], 2:[2, 5]]
insert 9
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[2, 5]]
lookup 5
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[5, 2]]
lookup 2
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[2, 5]]
lookup 3
hash table: [0:[3, 6, 9], 1:[1, 4], 2:[2, 5]]
(
Edited: 2021-03-17)
insert 1
hash table: [0:[], 1:[1], 2:[]]
insert 2
hash table: [0:[], 1:[1], 2:[2]]
insert 3
hash table: [0:[3], 1:[1], 2:[2]]
insert 4
hash table: [0:[3], 1:[1, 4], 2:[2]]
insert 5
hash table: [0:[3], 1:[1, 4], 2:[2, 5]]
insert 6
hash table: [0:[3, 6], 1:[1, 4], 2:[2, 5]]
lookup 6
hash table: [0:[6, 3], 1:[1, 4], 2:[2, 5]]
lookup 6
hash table: [0:[6, 3], 1:[1, 4], 2:[2, 5]]
insert 9
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[2, 5]]
lookup 5
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[5, 2]]
lookup 2
hash table: [0:[6, 3, 9], 1:[1, 4], 2:[2, 5]]
lookup 3
hash table: [0:[3, 6, 9], 1:[1, 4], 2:[2, 5]]