• No results found

hashing (2).pdf

N/A
N/A
Protected

Academic year: 2020

Share "hashing (2).pdf"

Copied!
57
0
0

Loading.... (view fulltext now)

Full text

(1)
(2)

What is a Hash Table ?

—

The simplest kind of

hash table is an array of records.

—

This example has 701

records.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ]

An array of records

. . .

(3)

What is a Hash Table?

—

Each record has a

special field, called its key.

—

In this example, the key

is a long integer field called Number.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ]

. . .

(4)

What is a Hash Table?

—

The number might be a

person's identification number, and the rest of the record has

information about the person.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ]

. . .

[ 700] [ 4 ]

(5)

What is a Hash Table ?

—

When a hash table is in

use, some spots contain valid records, and other spots are "empty".

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

(6)

Inserting a New Record

—

In order to insert a new

record, the key must

somehow be converted to an array index.

—

The index is called the hash

value of the key.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

(7)

Inserting a New Record

—

Typical way create a

hash value:

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

(Number mod 701)

(8)

Inserting a New Record

—

Typical way to create a

hash value:

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

(Number mod 701)

(9)

Inserting a New Record

—

The hash value is used for the location of the new record.

Number 580625685

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

(10)

Inserting a New Record

—

The hash value is used

for the location of the new record.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

(11)

Collisions

—

Here is another new

record to insert, with a hash value of 2.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

Number 701466868

My hash value is

(12)

Collisions

—

This is called a collision, because there is already

another valid record at [2].

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

Number 701466868

When a collision occurs,

move forward until you

(13)

Collisions

—

This is called a collision, because there is already

another valid record at [2].

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

Number 701466868

When a collision occurs,

move forward until you

(14)

Collisions

—

This is called a collision, because there is already

another valid record at [2].

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685

Number 701466868

When a collision occurs,

move forward until you

(15)

Collisions

—

This is called a collision, because there is already

another valid record at [2].

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

The new record goes

(16)

Searching for a

Key

—

The data that's attached to

a key can be found fairly quickly.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

(17)

Searching for a Key

—

Calculate the hash value.

—

Check that location of the

array for the key.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

Number 701466868

My hash value is

[2]. Not

(18)

Searching for a Key

—

Keep moving forward until

you find the key, or you reach an empty spot.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

Number 701466868

My hash value is

[2]. Not

(19)

Searching for a Key

—

Keep moving forward until

you find the key, or you reach an empty spot.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

Number 701466868

My hash value is

[2]. Not

(20)

Searching for a Key

—

Keep moving forward until

you find the key, or you reach an empty spot.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

Number 701466868

My hash value is

(21)

Searching for a Key

—

When the item is found, the

information can be copied to the necessary location.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

Number 701466868

My hash value is

(22)

Deleting a Record

—

Records may also be deleted from a hash

table.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 506643548 Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868 Please delete

(23)

Deleting a Record

—

Records may also be deleted from a hash table.

—

But the location must not be left as an ordinary

"empty spot" since that could interfere with searches.

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 233667136

Number 281942902 Number 155778322

. . .

(24)

Deleting a Record

[ 0 ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 700]

Number 233667136

Number 281942902 Number 155778322

. . .

Number 580625685 Number 701466868

—

Records may also be deleted from a hash table.

—

But the location must not be left as an ordinary

"empty spot" since that could interfere with searches.

—

The location must be marked in some special

(25)

—

An array in which TableNodes

are not stored consecutively

—

Their place of storage is

calculated using the key and a

hash function

—

Keys and entries are scattered

throughout the array.

Hashing

key entry

Key hash function

array index

4

10

(26)

—

insert: calculate place of

storage, insert TableNode; (1)

—

find: calculate place of

storage, retrieve entry; (1)

—

remove: calculate place of storage, set it to null; (1)

Hashing

key entry

4

10

123

(27)

Hashing

—

We use an array of some fixed size T to hold

the data. T is typically prime.

—

Each key is mapped into some number in the

range 0 to T-1 using a hash function, which

(28)

Example: fruits

—  Suppose our hash function gave us

the following values:

  hashCode("apple") = 5

hashCode("watermelon") = 3 hashCode("grapes") = 8

hashCode("cantaloupe") = 7 hashCode("kiwi") = 0

hashCode("strawberry") = 9 hashCode("mango") = 6

hashCode("banana") = 2

(29)

Example

—  Store data in a table array:

  table[5] = "apple"

table[3] = "watermelon" table[8] = "grapes"

table[7] = "cantaloupe" table[0] = "kiwi"

table[9] = "strawberry" table[6] = "mango"

table[2] = "banana"

(30)

Example

—

Associative array:

(31)

Example Hash Functions

—  If the keys are strings the hash function is some

function of the characters in the strings.

—  One possibility is to simply add the ASCII values of the

(32)

Finding the hash function

int hashCode( char* s ) {

int i, sum; sum = 0;

for(i=0; i < strlen(s); i++ )

sum = sum + s[i]; // ascii value

return sum % TABLESIZE;

(33)

Example Hash Functions

—

Another possibility is to convert the string into

some number in some arbitrary base b (b also

might be a prime number):

T

b

b

b

ABC

h

Example

T

b

i

str

str

h

Length -1 i=0 i

)%

67

66

(65

)

(

:

%

]

[

)

(

2 1

0

+

+

(34)

Example Hash Functions

—

If the keys are integers then key % T is

generally a good hash function, unless the data has some undesirable features.

—

For example, if T = 10 and all keys end in

zeros, then key % T = 0 for all keys.

—

In general, to avoid situations like this, T should

(35)

Collision: more Examples

Suppose our hash function gave us the following values:

—  hash("apple") = 5

hash("watermelon") = 3 hash("grapes") = 8

hash("cantaloupe") = 7 hash("kiwi") = 0

hash("strawberry") = 9 hash("mango") = 6

hash("banana") = 2

kiwi banana watermelon apple mango cantaloupe grapes strawberry 0 1 2 3 4 5 6 7 8 9

• Now what?

(36)

Collision

—

When two values hash to the same array

location, this is called a collision

—

Collisions are normally treated as “first come,

first served”—the first value that hashes to the

location gets it

—

We have to find something to do with the

(37)

Solution for Handling collisions

—

Solution #1: Search from there for an empty location

—

Can stop searching when we find the value or

an empty location.

(38)

Solution for Handling collisions

—

Solution #2: Use a Second Hash Function

(39)

Solution for Handling collisions

—

Solution #3: Use the array location as the

header of a linked list of values that hash to

(40)

Solution 1:

Open Addressing

—

This approach of handling collisions is called

open addressing; it is also known as closed hashing.

—

More formally, cells at h0(x), h1(x), h2(x), … are tried in succession where

hi(x)  =  (hash(x)  +  f(i))  mod  TableSize, with f(0)  =  0.

(41)

Linear Probing

—

We use f(i)  =  i, i.e., f is a linear function of i. Thus

location(x)  =  (hash(x)  +  i)  mod  TableSize

—

The collision resolution strategy is called linear

(42)

Linear Probing:

insert

—

Suppose we want to add

seagull to this hash table

—

Also suppose:

—  hashCode(“seagull”) = 143

—  table[143] is not empty

—  table[143] != seagull

—  table[144] is not empty

—  table[144] != seagull

—  table[145] is empty

—

Therefore, put seagull at

(43)

Linear Probing:

insert

—

Suppose you want to add

hawk to this hash table

—

Also suppose

—  hashCode(“hawk”) = 143

—  table[143] is not empty

—  table[143] != hawk

—  table[144] is not empty

—  table[144] == hawk

—  hawk is already in the table, so do nothing.

(44)

Linear Probing:

insert

—

Suppose:

—  You want to add cardinal to this hash table

—  hashCode(“cardinal”) = 147 —  The last location is 148

—  147 and 148 are occupied

—

Solution:

—  Treat the table as circular; after 148 comes 0

—  Hence, cardinal goes in

location 0 (or 1, or 2, or ...)

(45)

Linear Probing:

find

—

Suppose we want to find

hawk in this hash table

—

We proceed as follows:

—  hashCode(“hawk”) = 143

—  table[143] is not empty

—  table[143] != hawk

—  table[144] is not empty

—  table[144] == hawk (found!)

—

We use the same procedure

(46)

Linear Probing and Deletion

—

If an item is placed in array[hash(key)+4],

then the item just before it is deleted

—

How will probe determine that the “space/

hole” does not indicate the item is not in the

array?

—

Have three states for each location

—  Occupied

—  Empty (never used)

(47)

Clustering

—

One problem with linear probing technique is

the tendency to form “clusters”.

—

A cluster is a group of items not containing any open slots

—

The bigger a cluster gets, the more likely it is

that new values will hash into the cluster, and make it ever bigger.

(48)

Quadratic Probing

—

Quadratic probing uses different formula:

—

Use F(i) = i2 to resolve collisions

—

If hash function resolves to H and a search in

cell H is inconclusive, try H + 12, H + 22, H + 32,

—

Probe

array[hash(key)+12], then

array[hash(key)+22], then

array[hash(key)+32], and so on

(49)

Collision resolution:

Chaining

—

Each table position is a

linked list

—

Add the keys and entries

anywhere in the list (front easiest)

4

10

123

key entry key entry

key entry key entry

key entry

(50)

Collision resolution: chaining

—

Advantages over open

addressing:

—

Simpler insertion and

removal

—

Array size is not a

limitation

—

Disadvantage

—

Memory overhead is large

if entries are small.

4

10

123

key entry key entry

key entry key entry

(51)

Recap

—

Collision Strategies in Hashing

—

Linear Probing

—

Quadratic Probing

(52)

Applications of Hashing

—

Compilers use hash tables to keep track of

declared variables (symbol table).

—

A symbol table is an important part of

compilation process. Compiler puts variables

inside symbol table during this process. <Read

(53)

Applications of Hashing

—

A hash table can be used for on-line spelling

checkers — if misspelling detection (rather than correction) is important, an entire dictionary can be hashed and words checked in constant time.

—

Hash table of all English words

(54)

Applications of Hashing

—

Game playing programs use hash tables to

store seen positions for analysis purpose, thereby saving computation time if the

position is encountered again.

—

Hash functions can be used to quickly check

(55)

When is hashing suitable?

—

Hash tables are very good if there is a need for

many searches in a reasonably stable table.

Example: Dictionary

—

Hash tables are not so good if there are many

insertions and deletions, or if table traversals

are needed — in this case, AVL trees are better.

—

Also, hashing is very slow for any operations

which require the entries to be sorted

—  There may be spaces/holes in the array

(56)

Different Hashing Functions

Home Work: Describe the following hash functions in 3 or 5 lines.

—

Division or mod function

—

Folding

—

Mid Square Function

—

Extraction

—

Radix Transformation

(57)

Important questions

—  What is the basic concept of Hashing in Data Structures?

—  What is collision when using a Hash function? Provide few

examples of collision.

—  What are different methods for the collision resolution?

—  What are some of the applications of Hashing?

—  Is hashing suitable for the following scenarios? Justify

your answer.

—  Searching in a table

—  Frequent read and write data

—  Operations which require Sorting

References

Related documents

LATIN SMALL LETTER O WITH DOUBLE ACUTE OElig 00152 =capital OE ligature. LATIN CAPITAL LIGATURE OE oelig 00153 =small

[r]

This article connects the work of historians on Jewish physicians during the Holocaust to bioethical concerns; specifically, it frames the stories of four Jewish physicians during

The data showed that in competition situations more problem- (52.8%) and emotion-focused coping strategies (22.2%) were reported by the participants, while in training

This workers’ compensation dispute was filed by claimant, Jerry Perez, against his employer, Express Jet, alleging injury to his neck via an accident that occurred on October 21,

In other cases, synthetic fabrics may be topically treated with chemicals after the manufacturing process (in the same manner as natural fibers such as cotton), or may

Therefore, this review highlighted the drying methods for municipal solid waste quality improvement around the world and compared them based on the reduction of moisture, weight

The workflow of the complete process is shown in Figure 1, starting with the metabolic labeling of the samples, combining and digesting them, followed by the LC-MS analysis