Suppose you have a list of Sunglasses objects where there are ...
- 4 attributes, color, shape, style and brand.
- no identical ones; the combination of 4 attributes always different
What is the fastest way to retrieve them?
I think:
- Override the hashcode() method in the Sunglasses class (should be unique because none of them are identical).
- Then using each object's hashcode as key, object itself as value, put them into a Hashmap
Suppose I remember exactly what color shape and style and brand of a glass I want to get,
- I apply them with the hashcode method I have implemented.
- then get it from the hashmap, this should give me contants time O(1) retrieval.
Problem is what if I only know the color. How do I get a list of all glasses with the same color?
Build a
HashMap<Color,Collection<Glasses>>
in addition to your other data structures.This map essentially servers as an index on the
Color
attribute.Whenever you add or remove glasses from your other data structures, make sure to update this color index as well.