In Java I have a SortedSet that may have 100,000 elements. I would like to efficiently and elegantly get the last 25 elements. I'm a bit puzzled.

To get the first 25 I'd iterate and stop after 25 elements. But I don't know how to iterate in reverse order. Any ideas?

SortedSet<Integer> summaries = getSortedSet();
// what goes here :-(
link|improve this question

79% accept rate
A sorted set... What an oxymoron. – Anton Gogolev Feb 24 '09 at 13:30
Anton Gogolev: check Wikipedia’s "Total order" article. – kmkaplan Feb 24 '09 at 13:41
feedback

6 Answers

up vote 9 down vote accepted

You need a NavigableSet. Else you’ll have to do it inefficiently, iterating through the whole SortedSet and collecting elements into a Queue that you keep trimmed at 25 elements.

link|improve this answer
NavigableSet was added to Java 6. Conveniently, I updated my codebase from Java 5 to Java 6 last week! – Steve McLeod Feb 24 '09 at 13:28
+1. definitely the way to go! – Mitch Wheat Feb 24 '09 at 13:30
feedback

SortedSet<T> was designed assuming a very simple iteration model, forward only, thus finding the top n entries is easy but finding the last would require an expensive read through the iterator maintaining a window of the last n entries.

NavigableSet<T> adding in 1.6 solves this (and the only SortedSet implementation from 1.4 TreeSet implements it so it is likely to be a drop in replacement for you).

NavigableSet<T> set = new TreeSet<T>();
// add elements
set.descendingIterator() // iterate over the last n entires as needed
link|improve this answer
This answer is confusing the top of a b-tree with the sequentially first element it holds - they are not the same. It should be corrected to avoid down votes because it's otherwise a correct answer. – Software Monk Feb 24 '09 at 22:11
The essential problem with the pre J6 collections is unidirectional navigation (forward only). – Software Monk Feb 24 '09 at 22:12
corrected, let me know if you think this is unclear thanks – ShuggyCoUk Feb 24 '09 at 22:53
feedback

A different data structure would be more appropriate for this operation.

This is not an elegant way or very efficient, but assuming the SortedSet is in ascending order you could get the Last() item and remove it, storing it in another list, and repeat 25 times. You would then have to put these elements back again!

link|improve this answer
feedback

Reverse your sort and take the first 25 items. You can then reverse those which will be efficient as its only 25 items.

Bruce

link|improve this answer
feedback

I'm assuming that this is unlikely to be of any real-life use in your project, but it's worth noting that you might simply be able to have the list sorted in the opposite direction instead :)

link|improve this answer
feedback

Throw the Set into a List and use subList()? I'm not sure how performant it is to create the List, so you'd have to run some tests. It'd certainly make the coding easy though.\

    List f = new List( summaries);
    List lastTwentyFive = f.subList( summaries.size() - 25, summaries.size() );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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