Extendible hashing
Encyclopedia
Extendible hashing is a type of hash system which treats a hash as a bit string, and uses a trie
Trie
In computer science, a trie, or prefix tree, is an ordered tree data structure that is used to store an associative array where the keys are usually strings. Unlike a binary search tree, no node in the tree stores the key associated with that node; instead, its position in the tree defines the...

 for bucket lookup. Because of the hierarchical nature of the system, re-hashing is an incremental operation (done one bucket at a time, as needed). This means that time-sensitive applications are less affected by table growth than by standard full-table rehashes.

Example

This is an example from .

Assume that the hash function returns a binary number. The first i bits of each string will be used as indices to figure out where they will go in the "directory" (hash table). Additionally, i is the smallest number such that the first i bits of all keys are different.

Keys to be used:

= 100100

= 010110

= 110110

Let's assume that for this particular example, the bucket size is 1. The first two keys to be inserted, k1 and k2, can be distinguished by the most significant bit, and would be inserted into the table as follows:
Now, if k3 were to be hashed to the table, it wouldn't be enough to distinguish all three keys by one bit (because k3 and k1 have 1 as their leftmost bit. Also, because the bucket size is one, the table would overflow. Because comparing the first two most significant bits would give each key a unique location, the directory size is doubled as follows:
And so now k1 and k3 have a unique location, being distinguished by the first two leftmost bits. Because k2 is in the top half of the table, both 00 and 01 point to it because there is no other key to compare to that begins with a 0.

Further detail

= 011110

Now, k4 needs to be inserted, and it has the first two bits as 01..(1110), and using a 2 bit depth in the directory, this maps from 01 to Bucket A. Bucket A is full (max size 1), so it must be split; because there is more than one pointer to Bucket A, there is no need to increase the directory size.

What is needed is information about:
  1. The key size that maps the directory (the global depth), and
  2. The key size that has previously mapped the bucket (the local depth)


In order to distinguish the two action cases:
  1. Doubling the directory when a bucket becomes full
  2. Creating a new bucket, and re-distributing the entries between the old and the new bucket


Examining the initial case of an extendible hash structure, if each directory entry points to one bucket, then the local depth should be equal to the global depth.

The number of directory entries is equal to 2global depth, and the initial number of buckets
is equal to 2local depth.

Thus if global depth = local depth = 0, then 20 = 1, so an initial directory of one pointer to one bucket.

Back to the two action cases:

If the local depth is equal to the global depth, then there is only one pointer to the bucket, and there is no other directory pointers that can map to the bucket, so the directory must be doubled (case1).

If the bucket is full, if the local depth is less than the global depth,
then there exists more than one pointer from the directory to the bucket, and the bucket can be split (case 2).
Key 01 points to Bucket A, and Bucket A's local depth of 1 is less than the directory's global depth of 2, which means keys hashed to Bucket A have only used a 1 bit prefix (i.e. 0), and the bucket needs to have its contents split using keys 1 + 1 = 2 bits in length; in general, for any local depth d where d is less than D, the global depth, then d must be incremented after a bucket split, and the new d used as the number of bits of each entry's key to redistribute the entries of the former bucket into the new buckets.
Now,
= 011110

is tried again, with 2 bits 01.., and now key 01 points to a new bucket but there is still k2 in it ( = 010110 and also begins with 01).

If k2 had been 000110, with key 00, there would have been no problem, because k2 would have remained in the new bucket A' and bucket D would have been empty.

(This would have been the most likely case by far when buckets are of greater size than 1 and the newly split buckets would be exceedingly unlikely to overflow, unless all the entries were all rehashed to one bucket again. But just to emphasize the role of the depth information, the example will be pursued logically to the end.)

So Bucket D needs to be split, but a check of its local depth, which is 2, is the same as the global depth, which is 2, so the directory must be split again, in order to hold keys of sufficient detail, e.g. 3 bits.
  1. Bucket D needs to split due to being full.
  2. As D's local depth = the global depth, the directory must double to increase bit detail of keys.
  3. Global depth has incremented after directory split to 3.
  4. The new entry k4 is rekeyed with global depth 3 bits and ends up in D which has local depth 2, which can now be incremented to 3 and D can be split to D' and E.
  5. The contents of the split bucket D, k2, has been re-keyed with 3 bits, and it ends up in D.
  6. K4 is retried and it ends up in E which has a spare slot.

Now, = 010110 is in D and = 011110 is tried again, with 3 bits 011.., and it points to bucket D which already contains k2 so is full; D's local depth is 2 but now the global depth is 3 after the directory doubling, so now D can be split into bucket's D' and E, the contents of D, k2 has its retried with a new global depth bitmask of 3 and k2 ends up in D', then the new entry k4 is retried with bitmasked using the new global depth bit count of 3 and this gives 011 which now points to a new bucket E which is empty. So K4 goes in Bucket E.

Example implementation

Below is the extendible hashing algorithm in Python
Python (programming language)
Python is a general-purpose, high-level programming language whose design philosophy emphasizes code readability. Python claims to "[combine] remarkable power with very clear syntax", and its standard library is large and comprehensive...

, with the disc block / memory page association, caching and consistency issues removed. Note a problem exists if the depth exceeds the bit size of an integer, because then doubling of the directory or splitting of a bucket won't allow entries to be rehashed to different buckets.

The code uses the least significant bits, which makes it more efficient to expand the table, as the entire directory can be copied as one block .

Python example


PAGE_SZ = 20

class Page:

def __init__(self):
self.m = {}
self.d = 0

def full(self):
return len(self.m) > PAGE_SZ

def put(self,k,v):
self.m[k] = v

def get(self,k):
return self.m.get(k)

class EH:

def __init__(self):
self.gd = 0
p = Page
self.pp= [p]

def get_page(self,k):
h = hash(k)
p = self.pp[ h & (( 1 << self.gd) -1)]
return p

def put(self, k, v):
p = self.get_page(k)
if p.full and p.d

self.gd:
self.pp *= 2
self.gd += 1

if p.full and p.d < self.gd:
p.put(k,v);
p1 = Page
p2 = Page
for k2,v2 in p.m.items:
h = hash(k2)
h = h & ((1 << self.gd) -1)
if (h >> p.d) & 1

1:
p2.put(k2,v2)
else:
p1.put(k2,v2)
for i,x in enumerate(self.pp):
if x

p:
if (i >> p.d) & 1

1:
self.pp[i] = p2
else:
self.pp[i] = p1

p2.d = p1.d = p.d + 1
else:
p.put(k, v)

def get(self, k):
p = self.get_page(k)
return p.get(k)



if __name__

"__main__":
eh = EH
N = 10000
l = list(range(N))

import random
random.shuffle(l)
for x in l:
eh.put(x,x)
print l

for i in range(N):
print eh.get(i)


See also

  • Trie
    Trie
    In computer science, a trie, or prefix tree, is an ordered tree data structure that is used to store an associative array where the keys are usually strings. Unlike a binary search tree, no node in the tree stores the key associated with that node; instead, its position in the tree defines the...

  • Hash table
    Hash table
    In computer science, a hash table or hash map is a data structure that uses a hash function to map identifying values, known as keys , to their associated values . Thus, a hash table implements an associative array...

  • Stable hashing
    Stable hashing
    Stable hashing is a tool used to implement randomized load balancing and distributed lookup in peer-to-peer computer systems....

  • Consistent hashing
    Consistent hashing
    Consistent hashing is a special kind of hashing. In contrast, in most traditional hash tables, a change in the number of array slots causes nearly all keys to be remapped...

  • Linear hashing

External links
The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK