-
What is the difference between a pointer and bucket pointer?
-
What is bucket pointer in C/C++?
-
What are the advantages and drawbacks of using them?
What is the difference between a pointer and bucket pointer? What is bucket pointer
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually the term bucket refers to a subcontainer in a hash table or hash container. Elements that have the same hash code are stored in the same bucket. A bucket could be implemented as a pointer to some storage such as a raw array, the head of a linked list, or a pointer to an implementation class. A pointer could be a pointer to anything – a variable, an object, a variable, … etc..