Download presentation
Presentation is loading. Please wait.
Published bySucianty Kartawijaya Modified over 5 years ago
1
Collision Resolution Neil Tang 02/21/2008
CS223 Advanced Data Structures and Algorithms
2
CS223 Advanced Data Structures and Algorithms
Class Overview Separate chaining Load factor Open addressing: linear probing, quadratic probing and double hashing Rehashing CS223 Advanced Data Structures and Algorithms
3
CS223 Advanced Data Structures and Algorithms
Separate Chaining hash(x) = x mod 10 CS223 Advanced Data Structures and Algorithms
4
CS223 Advanced Data Structures and Algorithms
Construct the Table CS223 Advanced Data Structures and Algorithms
5
CS223 Advanced Data Structures and Algorithms
Chaining Operations CS223 Advanced Data Structures and Algorithms
6
CS223 Advanced Data Structures and Algorithms
Load Factor Load factor = N/M, where N is the number of elements and M is the table size. The average length of a list is . In unsuccessful search, the number of elements to examine is on average. A successful search requires (1+ /2) links to be traversed on average. CS223 Advanced Data Structures and Algorithms
7
CS223 Advanced Data Structures and Algorithms
Open Addressing When collision, try alternative cells until an empty cell is found. hi(x) = (hash(x) + f(i)) mod TableSize, with f(0)=0 CS223 Advanced Data Structures and Algorithms
8
CS223 Advanced Data Structures and Algorithms
Linear Probing f(i) = i CS223 Advanced Data Structures and Algorithms
9
CS223 Advanced Data Structures and Algorithms
Linear Probing Even if the table is relatively empty, blocks of occupied cells may start forming. This effect is referred as primary clustering. The expected probing for insertion and unsuccessful search is 1/2(1+1/(1-)2) and for successful search is 1/2(1+1/(1- )). CS223 Advanced Data Structures and Algorithms
10
CS223 Advanced Data Structures and Algorithms
Quadratic Probing f(i) = i2 CS223 Advanced Data Structures and Algorithms
11
CS223 Advanced Data Structures and Algorithms
Quadratic Probing CS223 Advanced Data Structures and Algorithms
12
CS223 Advanced Data Structures and Algorithms
Quadratic Probing CS223 Advanced Data Structures and Algorithms
13
CS223 Advanced Data Structures and Algorithms
Quadratic Probing Theorem: If quadratic probing is used, and the table size is prime, then a new element can always be inserted if the table is at least half empty. The secondary clustering problem. CS223 Advanced Data Structures and Algorithms
14
CS223 Advanced Data Structures and Algorithms
Double Hashing f(i) = i*hash2(x) hash2(x) = 7 – (x mod 7) If x=23, then… CS223 Advanced Data Structures and Algorithms
15
CS223 Advanced Data Structures and Algorithms
Rehashing Roughly double the table size. Re-insert the elements. CS223 Advanced Data Structures and Algorithms
16
CS223 Advanced Data Structures and Algorithms
Rehashing CS223 Advanced Data Structures and Algorithms
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.