InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the correct function definition for linear probing?(a) F(i)= 1(b) F(i)=i(c) F(i)=i^2(d) F(i)=i+1I want to ask this question from Hash Tables topic in section Hash Tables of Data Structures & Algorithms IThis question was addressed to me in final exam. |
|
Answer» Right ANSWER is (B) F(i)=i |
|