Is there a list type in java that stores objects in ascending order and not adds if this object is previously added. I know java maps can do that but I wonder if there is a list type that does what I want. Otherwise I have to override contains, equalsTo and add methods,right?
|
So you need a list containing only unique elements? Two options:
|
|||
|
Depends on what order do you mean.
|
||||
|
|
|
TreeSet will do the trick. Example :
|
|||
|
|
|
I think you're after a SortedSet (this is an interface which extends Set). Set is like a List but it contains only one of each value. TreeSet is a commonly-used implementation of SortedSet http://download.oracle.com/javase/6/docs/api/java/util/TreeSet.html |
|||
|
|
|
TreeSet might be exactly what you need. It stores the elements in a sorted tree. So you can iterate over them in sorted order. It's not a list, but it performs better with respect to add and contains. |
|||
|
|
|
It is not a list, but you can look at implementations of Set http://download.oracle.com/javase/6/docs/api/java/util/Set.html |
|||
|
|
ArrayListand overrideaddmethods.Test the object existence usingcontainsmethod before adding object into it. Order means access by index(like list) right? – Prince John Wesley Oct 28 '11 at 10:05