Algorithm Design 12
Chapter 9 Randomized Algorithm
9.3 Hashing
universal hashing function
Intuition : want the function looks "random"
Def [ universal hashing function ] A family
of functions is universal if ,Design : Let
be a prime number ( is the size of hash table , for simplicity let )For all
, write in base- : , where . Goal : prove , Proof :Suppose
, , so there exists such that . This is because , and for all possible , there exists exactly one that
Perfect Hashing
Def : static dictionary with no collision ,
, space , query time ( with oracle , performing costs time )static : only consider lookup operation , no insertion/deletion .
FKS Perfect Hashing [1984]
Intuition :
-level data structure- Firstly sample
, get a hash table , space - Secondly , if index
encounters collision (suppose the collision set is ), then sample and get a second-level hash table , space . If collision still happens , then resample , until no collision happens .
- Firstly sample
Collision Analysis
Claim :
universal , . If , then with probability there is no collision .Proof :
, define random variable , define By Markov's Inequality , Therefore , let , so .Space Analysis
Claim :
Proof : Let
, , so in the first level , Similarly , , so .
Balls-Bins Game
bins , balls , , , soLet
, so , , soCoupon Collector Problem
balls , bins , w.h.p. every bin is non-emptyLoad Balancing Problem
balls , bins , load of every bin ( not too small )Application : load balancing in network
Power of two choices
bins , ballsFor every ball , choose
random bins , and place the ball in the bin with smaller load .
(*) Cuckoo Hashing
worst case :
lookup , dynamic dictionaryMaintain
hash tables ,Insert(x)
If
in is empty , insert intoIf
contains , then insert into by , and insert into byFollowing some procedure , until an empty slot is found .
If #iteration $$ threshold
, rehash all elements
If load
,Lookup(x)
: Obviously at most look up times .Delete(x)
: Use lookup then delete .
Application : Closest Pair Problem
using D&C ,
using Hashing ,
in expectationHash function computation modal :
- Insertion :
in expectation - Deletion :
in expectation - Lookup :
in expectation
- Insertion :
Algorithm :
Order points randomly
, letWhen we process
, we will find whether s.t. .If YES , we start a new phase with new
In each phase , maintain a grid with edge length
, each cell contains points inmaintain all nonempty cells in a dictionary (
: all cells )Suppose we are processing
, we only need to look up cells in the dictionary to find smaller distance .Whenever we start a new phase , we reconstruct the whole dictionary .
Analysis :
, running time .Therefore ,
.Claim :
( by the initial random permutation )Proof : Suppose
has the minimum distance among , so . , so .
9.4 Approximate Counting
Approximate Counting Problem
#P : counting problem
NP#P-complete
: e.g. counting perfect matchingFPRAS : Fully-Poly Randomized Approximation Scheme
An algorithm in
,Scheme : Rejection Sampling
Example:
General : to estimate
, construct s.t.- Can uniformly sample from
- Membership Oracle :
, decide whether or not - We know
- Can uniformly sample from