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:
- I could iterate through a TreeSet every time I needed a particular element.
- I could maintain a TreeSet and generate a List from it when I needed to access a particular element.
- Same as above, only cache the List until the Set changes.
- I could have a List and sort it myself whenever I needed to add an element.
- 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.