vote up 4 vote down star
2

In Cocoa, if I want to loop through an NSMutableArray and remove multiple objects that fit a certain criteria, what's the best way to do this without restarting the loop each time I remove an object?

Thanks,

Edit: Just to clarify - I was looking for the best way, e.g. something more elegant than manually updating the index I'm at. For example in C++ I can do;

iterator it = someList.begin();

while (it != someList.end())
{
    if (shouldRemove(it))   
        it = someList.erase(it);
}
flag

11 Answers

vote up 18 vote down check

For clarity I like to make an initial loop where I collect the items to delete. Then I delete them. Here's a sample using Objective-C 2.0 syntax:

NSMutableArray *discardedItems = [NSMutableArray array];
SomeObjectClass *item;

for (item in originalArrayOfItems) {
    if ([item shouldBeDiscarded])
        [discardedItems addObject:item];
}

[originalArrayOfItems removeObjectsInArray:discardedItems];

Then there is no question about whether indices are being updated correctly, or other little bookkeeping details.

Edited to add:

It's been noted in other answers that the inverse formulation should theoretically be faster. i.e. If you iterate through the array and compose a new array of objects to keep, instead of objects to discard. That may or may not be true, because NSArrays do not behave like "normal" arrays. They talk the talk but they walk a different walk. See a good analysis here:

http://ridiculousfish.com/blog/archives/2005/12/23/array/

The inverse formulation may be faster—but it may not. I don't know; I've never measured it. I've also never needed to care, because the above formulation has always been fast enough for my needs.

For me the take-home message is to use whatever formulation is clearest to you. Optimize only if necessary. I personally find the above formulation clearest, which is why I use it. But if the inverse formulation is clearer to you, go for it.

link|flag
1  
Beware that this could create bugs if objects are more than once in an array. As an alternative you could use an NSMutableIndexSet and -(void)removeObjectsAtIndexes. – gs Jun 19 at 20:47
vote up 1 vote down

One more variation. So you get readability and good performace:

NSMutableIndexSet *discardedItems = [NSMutableIndexSet indexSet];
SomeObjectClass *item;
NSUInteger index = 0;

for (item in originalArrayOfItems) {
    if ([item shouldBeDiscarded])
        [discardedItems addIndex:index];
    index++;
}

[originalArrayOfItems removeObjectsAtIndexes:discardedItems];
link|flag
vote up 3 vote down

You can use NSpredicate to remove items from your mutable array. This requires no for loops.

For example if you have an NSMutableArray of names, you can create a predicate like this one:

NSPredicate *caseInsensitiveBNames = 
[NSPredicate predicateWithFormat:@"SELF beginswith[c] 'b'"];

The following line will leave you with an array that contains only names starting with b.

[namesArray filterUsingPredicate:caseInsensitiveBNames];

If you have trouble creating the predicates you need, use this apple developer link.

link|flag
vote up 2 vote down

Some of the other answers would have poor performance on very large arrays, because methods like removeObject: and removeObjectsInArray: involve doing a linear search of the receiver, which is a waste because you already know where the object is. Also, any call to removeObjectAtIndex: will have to copy values from the index to the end of the array up by one slot at a time.

More efficient would be the following:

NSMutableArray *array = ...
NSMutableArray *itemsToKeep = [NSMutableArray arrayWithCapacity:[array count]];
for (id object in array) {
    if (! shouldRemove(object)) {
        [itemsToKeep addObject:object];
    }
}
[array setArray:itemsToKeep];

Because we set the capacity of itemsToKeep, we don't waste any time copying values during a resize. We don't modify the array in place, so we are free to use Fast Enumeration. Using setArray: to replace the contents of array with itemsToKeep will be efficient. Depending on your code, you could even replace the last line with:

[array release];
array = [itemsToKeep retain];

So there isn't even a need to copy values, only swap a pointer.

link|flag
vote up 0 vote down

If all objects in your array are unique or you want to remove all occurrences of an object when found, you could fast enumerate on an array copy and use [NSMutableArray removeObject:] to remove the object from the original.

NSMutableArray *myArray;
NSArray *myArrayCopy = [NSArray arrayWithArray:myArray];

for (NSObject *anObject in myArrayCopy) {
	if (shouldRemove(anObject)) {
		[myArray removeObject:anObject];
	}
}
link|flag
vote up 0 vote down

How about swapping the elements you want to delete with the 'n'th element, 'n-1'th element and so on?

When you're done you resize the array to 'previous size - number of swaps'

link|flag
vote up 5 vote down

In a more declarative way, depending on the criteria matching the items to remove you could use:

[theArray filterUsingPredicate:aPredicate]

@Nathan should be very efficient

link|flag
vote up -2 vote down

this should do it:

	NSMutableArray* myArray = ....;

	int i;
	for(i=0; i<[myArray count]; i++) {
		id element = [myArray objectAtIndex:i];
		if(element == ...) {
			[myArray removeObjectAtIndex:i];
			i--;
		}
	}

hope this helps...

link|flag
not supposed to be mutating the array during iteration – Corey Floyd Jun 19 at 19:23
Although unorthodox, I've found iterating backwards and deleting as I go to be a clean and simple solution. Usually one of the fastest methods as well. – rpetrich Aug 1 at 7:03
vote up 5 vote down

Either use loop counting down over indices – for (NSInteger i = array.count - 1; i >= 0; --i) – or make a copy with the objects you want to keep. In particular, do not use a for(id object in array) loop or NSEnumerator.

link|flag
vote up 0 vote down

Why don't you add the objects to be removed to another NSMutableArray. When you are finished iterating, you can remove the objects that you have collected.

link|flag
vote up 2 vote down

Add the objects you want to remove to a second array and, after the loop, use -removeObjectsInArray:.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.