powerpoint presentation · hashing. hashing goals: we want to define a keyspace, a (mathematical)...

26
CS 225 Data Structures Oct. 22 – BTree Analysis Wade Fagen-Ulmschneider

Upload: others

Post on 06-Aug-2020

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

CS 225Data Structures

Oct. 22 – BTree AnalysisWade Fagen-Ulmschneider

Page 2: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisThe height of the BTree determines maximum number of ____________ possible in search data.

…and the height of the structure is: ______________.

Therefore: The number of seeks is no more than __________.

…suppose we want to prove this!

Page 3: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisIn our AVL Analysis, we saw finding an upper bound on the height (given n) is the same as finding a lower bound on the nodes (given h).

We want to find a relationship for BTrees between the number of keys (n) and the height (h).

Page 4: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisStrategy:We will first count the number of nodes, level by level.

Then, we will add the minimum number of keys per node (n).

The minimum number of nodes will tell us the largest possible height (h), allowing us to find an upper-bound on height.

Page 5: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisThe minimum number of nodes for a BTree of order m at each level:

root:

level 1:

level 2:

level 3:…level h:

Page 6: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisThe total number of nodes is the sum of all of the levels:

Page 7: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisThe total number of keys:

Page 8: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisThe smallest total number of keys is:

So an inequality about n, the total number of keys:

Solving for h, since h is the number of seek operations:

Page 9: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

Mattox Monday

Page 10: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

A CS 225 Field Trip (Section AL1, 11am ONLY)

Page 11: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

Nick Holonyak- Invented the visible-light LED- Professor of ECE at UIUC- Celebrating his 90th birthday!

Page 12: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace
Page 13: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace
Page 14: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

A CS 225 Field Trip (Section AL1, 11am ONLY)This Friday (Oct. 26), CS 225-AL1 (11:00am) will meet in Lincoln Hall Theater instead of ECEB.

CS 225-AL2 (2:00pm) will meet in ECEB as normally scheduled. (However, feel free to come to AL1!)

Page 15: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

MP4 Animations

Page 16: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

MP4 Animations

Page 17: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace
Page 18: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace
Page 19: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

BTree AnalysisGiven m=101, a tree of height h=4 has:

Minimum Keys:

Maximum Keys:

Page 20: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

Hashing

Page 21: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

HashingGoals: We want to define a keyspace, a (mathematical) description of the keys for a set of data.

…use a function to map the keyspace into a small set of integers.

Page 22: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

Hashing

Locker Number Name

103

92

330

46

124

Page 23: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

Hashing

Hash function

Page 24: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

A Hash Table based Dictionary

A Hash Table consists of three things:1.

2.

3.

Dictionary<KeyType, ValueType> d;

d[k] = v;

1

2

Client Code:

Page 25: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

A Perfect Hash Function

(Angrave, CS 241)(Beckman, CS 421)(Cunningham, CS 210)(Davis, CS 101)(Evans, CS 126)(Fagen-Ulmschneider, CS 225)(Gunter, CS 422)(Herman, CS 233)

Hash function

Key Value

Page 26: PowerPoint Presentation · Hashing. Hashing Goals: We want to define a keyspace, a (mathematical) description of the keys for a set of data. …use a function to map the keyspace

A Perfect Hash Function

Hash function

Key Value

0

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

Keyspace:Rolling 5 dice!