Is there a feature in java by which I define an array as to keep it in a sorted fashion which will let me insert or remove an element in this array. This is to avoid expensive re-sort when an element is to be added or removed?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
http://download.oracle.com/javase/6/docs/api/java/util/SortedMap.html That may help you if you have couples (value,data). |
|||
|
|
|
If you are storing Objects in your Array which are not duplicated and can be compared using a Comparable, you could use a TreeSet which will keep your elements in order at all times. |
|||||||
|