Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing an iPhone app, and I'm surprised that there seem to be no NSQueue or NSStack classes in Apple's Foundation Framework. I see that it would be quite easy to roll my own, starting with an NSMutableArray, so I'll do that unless I've missed something. Have I missed something?

share|improve this question

6 Answers

up vote 7 down vote accepted

as far as I know there is no generic class avaialbe. Try using the NSMutableArray, add via addObject and get first/last via objectAtIndex and removeObjectAtIndex.

share|improve this answer

Here's my Stack class, in case it's useful to those who come after me. As you can see, the pop method involves enough code that you'd want to factor it out.

Stack.h:

#import <Foundation/Foundation.h>

@interface Stack : NSObject {
    NSMutableArray *contents;
}

- (void)push:(id)object;
- (id)pop;

@end

Stack.m

#import "Stack.h"

@implementation Stack

// superclass overrides

- (id)init {
    if (self = [super init]) {
        contents = [[NSMutableArray alloc] init];
    }
    return self;
}

- (void)dealloc {
    [contents release];
    [super dealloc];
}

// Stack methods

- (void)push:(id)object {
    [contents addObject:object];
}

- (id)pop {
    NSUInteger count = [contents count];
    if (count > 0) {
        id returnObject = [[contents objectAtIndex:count - 1] retain];
        [contents removeLastObject];
        return [returnObject autorelease];
    }
    else {
        return nil;
    }
}

@end
share|improve this answer
2  
For the pop method, you can save a little bit of typing by using [contents lastObject]. That'll return nil if the array is empty. I ended up implementing the methods as a category on NSMutableArray. Thanks for the code! – Eric Andres Oct 18 '12 at 5:39
Sounds good - thanks for the tip. – Tommy Herbert Oct 21 '12 at 18:52

I'm a bit late to this party, but are you aware of CHDataStructures?

http://cocoaheads.byu.edu/code/CHDataStructures

share|improve this answer
2  
This is brilliant! Thanks for sharing! – paiego Jan 2 at 10:03

I have put a working iOS Objective C queue object on GitHub. The code was taken from various posts and by no means is owned by me.

https://github.com/esromneb/ios-queue-object/

If you see any problems please fork, and make a pull request!

share|improve this answer

Yes, an NSMutableArray doubles as a stack or queue. (It would be slightly inefficient as a queue.)

You could also use C++'s stack and queue adapter, but it makes memory management a bit messy if you want to store Objective-C objects with it.

share|improve this answer

No. You missed nothing. That's all. Objective-C is higher level language look like C. Low level control is not required.

Cocoa classes are designed easier use than efficiency. If you want to deal with performance, you have an option of raw C implementation (C standard lib or CoreFoundation). Otherwise, just use easy way. Of course, early-optimization is evil.

If you want a kind of encapsulation, just make a new class which contains NSMutableArray within it. Hide inner NSMutableArray and just expose what you want. But you'll realize this is unnecessary.

share|improve this answer
1  
Thanks. It's code duplication I'm worried about, rather than encapsulation. – Tommy Herbert Sep 7 '10 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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