Insert the keys <13, 19, 35, 71, 31, 6, 23, 4> into hash table of size m=11 using linear probing hashing. Here, h(k, i) =((k mod m) + i) mod m, i=0,1,2,…. How many times you have to increment i to resolve collisions?
Insert the keys <13, 19, 35, 71, 31, 6, 23, 4> into hash table of size m=11 using linear probing hashing. Here, h(k, i) =((k mod m) + i) mod m, i=0,1,2,…. How many times you have to increment i to resolve collisions?
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Insert the keys <13, 19, 35, 71, 31, 6, 23, 4> into hash table of size m=11 using linear probing hashing. Here, h(k, i) =((k mod m) + i) mod m, i=0,1,2,….
How many times you have to increment i to resolve collisions?
Expert Solution
Step 1
Inserting 13
13 mod 11 = 2
13 is inserted at position 2
Inserting 19
19 mod 11 = 8
19 is inserted at position 8
Inserting 35
35 mod 11 = 2
There is already an item in 2
So, checking at index 3
35 is inserted at position 3
Inserting 71
71 mod 11 = 5
71 is inserted at position 5
Inserting 31
31 mod 11 = 9
31 is inserted at position 9
Inserting 6
6 mod 11 = 6
6 is inserted at position 6
Inserting 23
23 mod 11 = 1
23 is inserted at position 1
Step by step
Solved in 3 steps
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education