CSE1303 Part A Data Structures and Algorithms Lecture A14 - PowerPoint PPT Presentation

1 / 25
About This Presentation
Title:

CSE1303 Part A Data Structures and Algorithms Lecture A14

Description:

Title: Lecture 15 Hash Tables Subject: CSC1030 Part A Author: Kymberly Fergusson & David Albrecht Last modified by: Administrator Created Date: 6/14/1997 5:06:52 AM – PowerPoint PPT presentation

Number of Views:179
Avg rating:3.0/5.0
Slides: 26
Provided by: KymberlyF4
Category:

less

Transcript and Presenter's Notes

Title: CSE1303 Part A Data Structures and Algorithms Lecture A14


1
CSE1303 Part AData Structures and
AlgorithmsLecture A14 Hash Tables
2
Overview
  • Information Retrieval
  • Review Binary Search Trees
  • Hashing.
  • Applications.
  • Example.
  • Hash Functions.

3
Example Bibliography
  • R. Kruse, C. Tondo, B. Leung, Data Structures
    and Program Design in C, 1991, Prentice Hall.
  • E. Horowitz, S. Salini, S. Anderson-Freed,
    Fundamentals of Data Structures in C, 1993,
    Computer Science Press.
  • R. Sedgewick, Algorithms in C, 1990,
    Addison-Wesley.
  • A. Aho, J. Hopcroft, J. Ullman, Data Structures
    and Algorithms, 1983, Addison-Wesley.
  • T.A. Standish, Data Structures, Algorithms
    Software Principles in C, 1995, Addison-Wesley.
  • D. Knuth, The Art of Computer Programming,
    1975, Addison-Wesley.
  • Y. Langsam, M. Augenstein, M. Fenenbaum, Data
    Structures using C and C, 1996, Prentice Hall.

4
Insert the information into a Binary Search Tree,
using the first authors surname as the key
5
Kruse Horowitz Sedgewick Aho Knuth Langsam Standish
Kruse
Horowitz
Sedgewick
Aho
Knuth
Langsam
Standish
Insert the information into a Binary Search Tree,
using the first authors surname as the key
6
Complexity
  • Inserting
  • Balanced Trees O(log(n))
  • Unbalanced Trees O(n)
  • Searching
  • Balanced Trees O(log(n))
  • Unbalanced Trees O(n)

7
Hashing
hash table
0
1
key
2
pos
3


TABLESIZE - 1
8
Example
hash table
0
hash function
1
Kruse
2
5
3
4
Kruse
5
6
9
Hashing
  • Each item has a unique key.
  • Use a large array called a Hash Table.
  • Use a Hash Function.

10
Applications
  • Databases.
  • Spell checkers.
  • Computer chess games.
  • Compilers.

11
Operations
  • Initialize
  • all locations in Hash Table are empty.
  • Insert
  • Search
  • Delete

12
Hash Function
  • Maps keys to positions in the Hash Table.
  • Be easy to calculate.
  • Use all of the key.
  • Spread the keys uniformly.

13
Example Hash Function 1
unsigned hash(char s) int i 0
unsigned value 0 while (si ! \0)
value (si 31value) 101
i return value
14
value (si 31value) 101
Example Hash Function 1
  • A. Aho, J. Hopcroft, J. Ullman, Data Structures
    and Algorithms, 1983, Addison-Wesley.

A 65
h 104
o 111
value (65 31 0) 101 65
value (104 31 65) 101 99
value (111 31 99) 101 49
15
value (si 31value) 101
Example Hash Function 1
Hash Key Value Aho
49 Kruse 95 Standish 60 Horowitz 28 L
angsam 21 Sedgewick 24 Knuth 44
resulting table is sparse
16
value (si 1024value) 128
Example Hash Function 2
Hash Key Value Aho
111 Kruse 101 Standish 104 Horowitz 1
22 Langsam 109 Sedgewick 107 Knuth 104
likely to result in clustering
17
Example Hash Function 3
value (si 3value) 7
Hash Key Value Aho
0 Kruse 5 Standish 1 Horowitz 5 Langs
am 5 Sedgewick 2 Knuth 1
collisions
18
Insert
  • Apply hash function to get a position.
  • Try to insert key at this position.
  • Deal with collision.

19
Example Insert
Aho, Kruse, Standish, Horowiz, Langsam,
Sedgewick, Knuth
hash table
Aho
0
Hash Function
1
Aho
2
0
3
4
5
6
20
Example Insert
Aho, Kruse, Standish, Horowiz, Langsam,
Sedgewick, Knuth
hash table
Aho
0
Hash Function
1
Kruse
2
5
3
4
Kruse
5
6
21
Example Insert
Aho, Kruse, Standish, Horowiz, Langsam,
Sedgewick, Knuth
hash table
Aho
0
Hash Function
Standish
1
Standish
2
1
3
4
Kruse
5
6
22
Search
  • Apply hash function to get a position.
  • Look in that position.
  • Deal with collision.

23
Example Search
Aho, Kruse, Standish, Horowiz, Langsam,
Sedgewick, Knuth
hash table
Aho
0
Hash Function
Standish
1
Kruse
2
5
3
4
Kruse
5
found.
6
24
Example Search
Aho, Kruse, Standish, Horowiz, Langsam,
Sedgewick, Knuth
hash table
Aho
0
Hash Function
Standish
1
Sedgwick
2
2
3
4
Kruse
5
Not found.
6
25
Revision
  • Hash Tables
  • Hash Functions
  • Insert, Search

Revision Reading
  • Kruse 8
  • Standish 11
  • Langsam 7.4

Preparation
  • Next lecture Hash Tables Collision Detection
  • Read Chapter 8 in Kruse et al.
Write a Comment
User Comments (0)
About PowerShow.com