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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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.. |
|||||||||
|