I want to use a collection that is sorted, but one in which I can access elements by index, i.e. I want something that has characteristics of both a Set and a List. Java.util.TreeSet comes real close to what I need, but doesn't permit access via an index.

I can think of several options:

  1. I could iterate through a TreeSet every time I needed a particular element.
  2. I could maintain a TreeSet and generate a List from it when I needed to access a particular element.
  3. Same as above, only cache the List until the Set changes.
  4. I could have a List and sort it myself whenever I needed to add an element.
  5. etc.

There are various trade-offs between the various options. I'm hoping somebody can give me some good advice. To answer the potential questions as to "why would you ever want to do that?", please read about the Apriori algorithm.

link|improve this question

2  
stackoverflow.com/questions/4031572/sorted-array-list-in-java might interest you – m0s Mar 17 '11 at 2:06
feedback

3 Answers

A couple of points:

  • Sort of a non-answer, but when I last needed to re-implement a frequent itemset mining algorithm, I went with FP-growth, which has performance on-par (or better) than a priori and, in my opinion, is easier to implement. This technique was developed by Jiawei Han and others, basically has a dedicated chapter in Data Mining: Concepts and Techniques.

  • There are several open-source tools that take a pretty standardized input (one list of integers per line; integers represent items, lines represent itemsets). Some of them give you a choice of algorithms. Many of them are available here with permissive licenses: http://fimi.ua.ac.be/src/

  • Keep in mind that using just any List implementation doesn't get you O(1) element access unless you specifically use an array/vector. More likely, you'll get better mileage out of keeping a mostly- or fully sorted array (with binary search for finding elements over a specific limit, and usual indexing for random access).

link|improve this answer
Thanks for the algorithm and implementation pointers. I had looked at some other existing open-source implementations, but the ones I looked at tended to have some assumptions (data types, etc.) that didn't match up well with what I needed. Apriori seemed relatively straightforward and with probably good enough efficiency for my task. I'm not too familiar with FP-growth. I'll take a look. Thanks! (+1 for you) – kc2001 Mar 17 '11 at 2:40
@kc2001: You're welcome. The 'easier to implement' is probably pretty subjective; they're probably on par. FP-growth is a little bit more fun, though, and definitely closer to state of the art. – phooji Mar 17 '11 at 2:45
feedback

Perhaps a combination of Treeset and the apache commons collections API CollectionUtils.get() would solve your problem

link|improve this answer
feedback

I would look into LinkedHashSet. It maintains insertion order of a HashSet.

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.