Hash Tables
1. Which of the following is a use of a Hash Table ?
2. Which of the following is the correct representation of hash table after doing the mentioned operations ? (Assume hash table size = 5 and all values are initialized as 0)
Insert(25);
Insert(26)
Remove(25);
Insert(50);
Insert(25);
Insert(26)
Remove(25);
Insert(50);