Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a Map implementation that returns the value associated with the requested key, or if not present returns the closest value, higher or lower as requested (along with the actual key, perhaps as a Map.Entry).

For example if the Map contained the following String key/value pairs:
alpha:AYE, beta:BEE, charlie:CEE, delta:DEE
and you ask for "Next higher" for "canada" you would get back charlie:CEE

Of course if you ask for the Next higher or Next lower for "charlie" you would get back charlie:CEE

It should use a comparator, so that if it container Number keys 1, 2, 3 and I request Next higher for 1.4, it would return the 2 key.

share|improve this question

1 Answer

up vote 10 down vote accepted

Use a NavigatableMap: http://docs.oracle.com/javase/6/docs/api/java/util/NavigableMap.html

In particular, use floorEntry or ceilingEntry or a combination.

TreeMap is an instance of NavigatableMap, so you can use that: http://docs.oracle.com/javase/6/docs/api/java/util/TreeMap.html

share|improve this answer
Excellent! Thanks – Victor Grazi Jan 11 '12 at 3:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.