• 0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
Formula:
hash1(key) = key % 10
Linear Probing will be done using:
(hash1(key) + i ) % 10
i = 0, 1, 2,....
Step: