English

Use the hash function: h(element) = element%11 to store the collection of numbers: [44, 121, 55, 33, 110, 77, 22, 66] in a hash table. Display the hash table created. Search if the values - Computer Science (Python)

Advertisements
Advertisements

Question

Use the hash function: h(element) = element%11 to store the collection of numbers: [44, 121, 55, 33, 110, 77, 22, 66] in a hash table. Display the hash table created. Search if the values 11, 44, 88, and 121 are present in the hash table, and display the search results.

Answer in Brief

Solution

def hashFind(key,hashTable):
 if (hashTable[key % 11] == key): 
  return ((key % 11)) 
 else:
  return None
hashTable=[None, None, None, None, None, None, None, None, None, None]
print("We have created a hashTable of 10 positions:")
print(hashTable)
L = [44, 121, 55,33, 110, 77, 22, 66]
print("The given list is", L[::] )
for i in range(0,len(L)): 
 hashTable[L[i]%10] = L[i]
 print("The hash table contents are: " )
 for i in range(0,len(hashTable)): 
  print("hashindex=", i," , value =", hashTable[i])
key = int(input("Enter the number to be searched:")) 
position = hashFind(key,hashTable)
if the position is None:
 print("Number", key, "is not present in the hash table")
else:
print("Number ",key," present at ",position, " position")

11, and 88 are not present but 44 and 121 are present at index 4 and 1 respectively.

shaalaa.com
Search by Hashing
  Is there an error in this question or solution?
Chapter 6: Searching - Exercise [Page 96]

APPEARS IN

NCERT Computer Science [English] Class 12
Chapter 6 Searching
Exercise | Q 8. | Page 96

RELATED QUESTIONS

A searching technique that quickly orders elements in the list to quickly search for keys is known as ______.


A hash function is used to ______.


In an event of collision, the process of identifying a slot for the second and further items in a hash table known as ______.


Hash function requires minimum three comparisons to find out presence or absence of a key.


A hash function creates hash values using ______.


Write a Python program by considering a mapping of the list of countries and their capital cities such as:

CountryCapital= {'India':'New Delhi','UK':
                             'London','France':'Paris',
                             'Switzerland': 'Berne',
                             'Australia': 'Canberra'}

Let us presume that our hash function is the length of the Country Name. Take two lists of appropriate size: one for keys (Country) and one for values (Capital). To put an element in the hash table, compute its hash code by counting the number of characters in the Country, then put the key and value in both lists at the corresponding indices. For example, India has a hash code of 5. So, we store India at the 5th position (index 4) in the keys list, New Delhi at the 5th position (index 4) in the values list, and so on. So that we end up with:

hash index = length of key - 1 List of Keys List of Values
0 None None
1 UK London
2 None None
3 Cuba Havana
4 India New Delhi
5 France Paris
6 None None
7 None None
8 Australia Canberra
9 None None
10 Switzerland Berne

Now search the capital of India, France, and the USA in the hash table and display your result.


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×