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

I have a TreeMap, that looks like this:

 TreeMap<Instant, HashMap<Type, Double>>

The Instant values are representing hours of a day; for each passed hour a value is stored in my map. Now I would like to get the last 24 elements (so the hours of the passed day) of this map. How could I do that?

Cheers

share|improve this question

3 Answers

up vote 2 down vote accepted

You can use the descendingMap call to get a view on the map which is basically in the reverse order, then take the first 24 entries from that (call iterator etc). (Guava's Iterables provides helpful methods for limiting an iterable etc.)

EDIT: For example, to get the last 24 elements (in reverse order, and using Guava) you could use:

List<HashMap<Type, Double>> lastValues = Lists.newArrayList
    (Iterables.limit(map.descendingMap().values(), 24));
share|improve this answer
Great, it works! Thanks! – Nikolaus Hartlieb Dec 21 '11 at 13:44

use TreeMap.tailMap() for it.

share|improve this answer
+1: The key needs to be the Instant for 24 hours previous. – Peter Lawrey Dec 21 '11 at 11:17
Problem here is, that if i use tailMap(), I would need to know the exact element, where the tail should start... Because the map changes all the time this isn't really applicable. – Nikolaus Hartlieb Dec 21 '11 at 11:19
1  
@NikolausHartlieb i think you need to ensure that during your fetching the 24 elements, the map is not gonna be changed. (e.g. the fetch thread can only start before HH:55. )otherwise there is no way to get the correct elements for you. e.g. you fetch (either by tailMap or desendingMap) on 10:59:59.990. you have very high probability to have wrong dataset. – Kent Dec 21 '11 at 11:38

You could make it a SortedMap<LocalDate, SortedMap<Hours, Map<Type, Double>>> so you can get the latest date from the outer Map.

share|improve this answer

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.