hash tables and constant access time cs-2303, c-term 20101 hash tables and constant access time...

24
Hash Tables and C onstant Access Ti me CS-2303, C-Term 20 10 1 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials from The C Programming Language, 2 nd edition, by Kernighan and Ritchie and from C: How to Program, 5 th and 6 th editions, by Deitel and Deitel)

Upload: ty-batman

Post on 31-Mar-2015

218 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 1

Hash Tables and Constant Access Time

CS-2303System Programming Concepts

(Slides include materials from The C Programming Language, 2nd edition, by Kernighan and Ritchie and from C: How to Program, 5th and 6th editions, by Deitel and Deitel)

Page 2: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 2

New Challenge

• What if we require a data structure that has to be accessed by value in constant time?

• I.e., O(log n) is not good enough!

• Need to be able to add or delete items

• Total number of items unknown• But an approximate maximum might be known

Page 3: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 3

Examples

• Anti-virus scanner

• Symbol table of compiler

• Virtual memory tables in operating system

• Bank or credit card account for a person

Page 4: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 4

Example – Validate a Credit Card

• 16-digit credit card numbers• 1016 possible card numbers

• Sparsely populated space• E.g., 108 MasterCard holders, similar for Visa

• Not “random” enough for a binary tree• Too many single branches really deep searches

• Need to respond to customer in 1-2 seconds• 1000s or tens of 1000s of customers per second!

Same is true for• ATM card numbers• Bank account numbers• Etc.

Page 5: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 5

Example — Anti-Virus Scanner

• Look at each sequence of bytes in a file

• See if it matches against library of virus patterns

• How many possible patterns?

• If so, flag it as a possible problem

Tens of Thousands!

Page 6: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 6

Anti-Virus Scanner (continued)

• Time to scan a file?• O(length) O(# of patterns)

• Can we do better?• Store patterns in a tree

• O(length) O(log (# of patterns))

• Can we do even better?• Yes — a Hash Table. Today’s topic.

Page 7: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 7

Requirement

• In these applications (and many like them), need constant time access

• I.e., O(1)

• Need to access by value!

Page 8: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 8

Observation

• Arrays provide constant time access …

• … but you have to know which element you want!• We only know the contents of the item we want!

• Also• Not easy to grow or shrink

• Not open-ended

• Can we do better?

Page 9: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 9

Definition – Hash Table

• A data structure comprising an array • for constant time access

• A set of linked lists• one list for each array element

• A hashing function to convert search key to array index

• a randomizing function to assure uniform distribution of values across array indices

Also known as a hash function

Page 10: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 10

Definition – Search Key

• A value stored as (part of) the payload of the item you are looking for

• E.g., your credit card number

• Your account number at Amazon

• A pattern characteristic of a virus

• Need to find the item containing that value (i.e., that key)

Page 11: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 11

Definition – Hash Function

• A function that randomizes the search key it to produce an index into the array

• Always returns the same value for the same key

• So that non-random keys don’t concentrate around a subset of the indices in the array

• See §6.6 in Kernighan & Ritchie

Page 12: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 12

datanext

Hash Table Structure

item item item item item item item item item item...

datanext data

next

datanextdatanext

datanext

datanextdatanext

datanext

datanextdatanext

datanext

datanext

The array

The lists

Page 13: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 13

datanext

Hash Table Structure (continued)

item item item item item item item item item item...

datanext data

next

datanextdatanext

datanext

datanextdatanext

datanext

datanextdatanext

datanext

datanext

The array

Note that some of the lists are emptyAverage length of list should be in single digits

Page 14: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 14

Guidelines for Hash Tables

• Lists from each item should be short• I.e., with short search time (approximately constant)

• Size of array should be based on expected # of entries

• Err on large side if possible

• Hashing function• Should “spread out” the values relatively uniformly

• Multiplication and division by prime numbers usually works well

Page 15: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 15

Example Hashing Function

• P. 144 of K & R

#define HASHSIZE 101

unsigned int hash(char *s) {unsigned int hashval;for (hashval = 0; *s != '\0'; s++)

hashval = *s + 31 * hashval;

return hashval % HASHSIZE

}

Note prime numbers to

“mix it up”

Page 16: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 16

Using a Hash Table

struct item *lookup(char *s) {struct item *np;

for (np = hashtab[hash(s)]; np != NULL;np = np -> next)

if (strcmp(s, np->data) == 0)return np; /*found*/

return NULL; /* not found */

}

Page 17: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 17

Using a Hash Table

struct item *lookup(char *s) {struct item *np;

for (np = hashtab[hash(s)]; np != NULL;np = np -> next)

if (strcmp(s, np->data) == 0)return np; /*found*/

return NULL; /* not found */

}

Hash table is indexed

by hash value of s

Page 18: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 18

Using a Hash Table

struct item *lookup(char *s) {struct item *np;

for (np = hashtab[hash(s)]; np != NULL;np = np -> next)

if (strcmp(s, np->data) == 0)return np; /*found*/

return NULL; /* not found */

}

Traverse the linked

list to find item s

Page 19: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 19

Using a Hash Table (continued)

struct item *addItem(char *s, …) {struct item *np;unsigned int hv;

if ((np = lookup(s)) == NULL) {np = malloc(item);/* fill in s and data */np -> next = hashtab[hv = hash(s)];hashtab[hv] = np;

};

return np;}

Page 20: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 20

Using a Hash Table (continued)

struct item *addItem(char *s, …) {struct item *np;unsigned int hv;

if ((np = lookup(s)) == NULL) {np = malloc(item);/* fill in s and data */np -> next = hashtab[hv = hash(s)];hashtab[hv] = np;

};

return np;}

Inserts new ite

m at head

of the lis

t indexed by

hash value

Page 21: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 21

Challenge

• What kinds of situations in your field might you need a hash table?

Page 22: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 22

Example — Source Code Control System

• System stores every version of every file since creation

• Storage for one file comprises two parts:• Hash table of lines of the file

• List of lines for each version of that file

• Easy to reconstruct any version of the file

• Easy to do an intelligent diff of two files

I.e., each line that has everbeen part of that file!

Page 23: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 23

Hash Table Summary

• Widely used for constant time access

• Easy to build and maintain

• There is an art and science regarding the choice of hashing functions

• Consult textbooks, web, etc.

Page 24: Hash Tables and Constant Access Time CS-2303, C-Term 20101 Hash Tables and Constant Access Time CS-2303 System Programming Concepts (Slides include materials

Hash Tables and Constant Access Time

CS-2303, C-Term 2010 24

Questions?