Is it possible for a single insert into an extendible hash to result in multiple directory doubles? All the online resources I could find only demonstrate cases where only a single double is necessary.
Consider the example using the MSB of keys:
| 0 | -> 00111
| 1 | -> 11110
insert(11111)
What would the result be? Would I need to double the directory multiple times?