I have a bunch of indexes and I want to remove elements at these indexes from an ArrayList. I can't do a simple sequence of remove()s because the elements are shifted after each removal. How do I solve this?
|
|
|
Sort the indices in descending order and then remove them one by one. If you do that, there's no way a remove will affect any indices that you later want to remove. How you sort them will depend on the collection you are using to store the indices. If it's a list, you can do this:
Edit@aioobe found the helper that I failed to find. Instead of the above, you can use
|
|||||||
|
|
Here is a suggestion, similar to @Mark Peters answer, but using the
Here is a complete demo:
|
||||
|
You can remove the elements starting from the largest index downwards, or if you have references to the objects you wish to remove, you can use the removeAll method. |
|||
|
|
|
order your list of indexes, like this if 2,12,9,7,3 order desc to 12,9,7,3,2 and then do this
this should resolve your problem. |
|||
|
|
|
You can remove the indexes in reverse order. If the indexes are in order like 1,2,3 you can do removeRange(1, 3). |
|||
|
|
|
If the elements you wish to remove are all grouped together, you can do a If the elements you wish to remove are scattered, it may be better to create a new ArrayList, add only the elements you wish to include, and then copy back into the original list. Edit: I realize now this was not a question of performance but of logic. |
|||
|
|
|
You can sort the indices as many said, or you can use an iterator and call remove()
it depends what you need, but the sort will be faster in most cases |
|||
|
|
|
Use guava! The method you are looking is Iterators.removeAll(Iterator removeFrom, Collection elementsToRemove) |
|||||
|
|
If you have really many elements to remove (and a long list), it may be faster to iterate over the list and add all elements who are not to be removed to a new list, since each
|
|||
|
|
|
I think nanda was the correct answer.
|
|||
|