How do I make and use a Queue in Objective-C?

后端 未结 10 1203
栀梦
栀梦 2020-11-27 10:21

I want to use a queue data structure in my Objective-C program. In C++ I\'d use the STL queue. What is the equivalent data structure in Objective-C? How do I push/pop ite

相关标签:
10条回答
  • 2020-11-27 10:24

    Yes, use NSMutableArray. NSMutableArray is actually implemented as 2-3 tree; you typically need not concern yourself with the performance characteristics of adding or removing objects from NSMutableArray at arbitrary indices.

    0 讨论(0)
  • 2020-11-27 10:26

    The solutions that use a category on NSMutableArray are not true queues, because NSMutableArray exposes operations that are a superset of queues. For example, you should not be allowed to remove an item from the middle of a queue (as those category solutions still let you do). It is best to encapsulate functionality, a major principle of object oriented design.

    StdQueue.h

    #import <Foundation/Foundation.h>
    
    @interface StdQueue : NSObject
    
    @property(nonatomic, readonly) BOOL empty;
    @property(nonatomic, readonly) NSUInteger size;
    @property(nonatomic, readonly) id front;
    @property(nonatomic, readonly) id back;
    
    - (void)enqueue:(id)object;
    - (id)dequeue;
    
    @end
    

    StdQueue.m

    #import "StdQueue.h"
    
    @interface StdQueue ()
    
    @property(nonatomic, strong) NSMutableArray* storage;
    
    @end
    
    @implementation StdQueue
    
    #pragma mark NSObject
    
    - (id)init
    {
        if (self = [super init]) {
            _storage = [NSMutableArray array];
        }
        return self;
    }
    
    #pragma mark StdQueue
    
    - (BOOL)empty
    {
        return self.storage.count == 0;
    }
    
    - (NSUInteger)size
    {
        return self.storage.count;
    }
    
    - (id)front
    {
        return self.storage.firstObject;
    }
    
    - (id)back
    {
        return self.storage.lastObject;
    }
    
    - (void)enqueue:(id)object
    {
        [self.storage addObject:object];
    }
    
    - (id)dequeue
    {
        id firstObject = nil;
        if (!self.empty) {
            firstObject  = self.storage.firstObject;
            [self.storage removeObjectAtIndex:0];
        }
        return firstObject;
    }
    
    @end
    
    0 讨论(0)
  • 2020-11-27 10:35

    Ben's version is a stack instead of a queue, so i tweaked it a bit:

    NSMutableArray+QueueAdditions.h

    @interface NSMutableArray (QueueAdditions)
    - (id) dequeue;
    - (void) enqueue:(id)obj;
    @end
    

    NSMutableArray+QueueAdditions.m

    @implementation NSMutableArray (QueueAdditions)
    // Queues are first-in-first-out, so we remove objects from the head
    - (id) dequeue {
        // if ([self count] == 0) return nil; // to avoid raising exception (Quinn)
        id headObject = [self objectAtIndex:0];
        if (headObject != nil) {
            [[headObject retain] autorelease]; // so it isn't dealloc'ed on remove
            [self removeObjectAtIndex:0];
        }
        return headObject;
    }
    
    // Add to the tail of the queue (no one likes it when people cut in line!)
    - (void) enqueue:(id)anObject {
        [self addObject:anObject];
        //this method automatically adds to the end of the array
    }
    @end
    

    Just import the .h file wherever you want to use your new methods, and call them like you would any other NSMutableArray methods.

    Good luck and Keep on Coding!

    0 讨论(0)
  • 2020-11-27 10:42

    There's no real queue collections class, but NSMutableArray can be used for effectively the same thing. You can define a category to add pop/push methods as a convenience if you want.

    0 讨论(0)
  • 2020-11-27 10:45

    Is there some particular reason you cannot just use the STL queue? Objective C++ is a superset of C++ (just use .mm as the extension instead of .m to use Objective C++ instead of Objective C). Then you can use the STL or any other C++ code.

    One issue of using the STL queue/vector/list etc with Objective C objects is that they do not typically support retain/release/autorelease memory management. This is easily worked around with a C++ Smart Pointer container class which retains its Objective C object when constructed and releases it when destroyed. Depending on what you are putting in the STL queue this is often not necessary.

    0 讨论(0)
  • 2020-11-27 10:46

    I wouldn't say that using NSMutableArray is necessarily the best solution, particularly if you're adding methods with categories, due to the fragility they can cause if method names collide. For a quick-n-dirty queue, I'd use the methods to add and remove at the end of a mutable array. However, if you plan to reuse the queue, or if you want your code to be more readable and self-evident, a dedicated queue class is probably what you want.

    Cocoa doesn't have one built in, but there are other options, and you don't have to write one from scratch either. For a true queue that only adds and removes from the ends, a circular buffer array is an extremely fast implementation. Check out CHDataStructures.framework, a library/framework in Objective-C that I've been working on. It has a variety of implementations of queues, as well as stacks, deques, sorted sets, etc. For your purposes, CHCircularBufferQueue is significantly faster (i.e. provable with benchmarks) and more readable (admittedly subjective) than using an NSMutableArray.

    One big advantage of using a native Objective-C class instead of a C++ STL class is that it integrates seamlessly with Cocoa code, and works much better with encode/decode (serialization). It also works perfectly with garbage collection and fast enumeration (both present in 10.5+, but only the latter on iPhone) and you don't have to worry about what is an Objective-C object and what is a C++ object.

    Lastly, although NSMutableArray is better than a standard C array when adding and removing from either end, it's also not the fastest solution for a queue. For most applications it is satisfactory, but if you need speed, a circular buffer (or in some cases a linked list optimized to keep cache lines hot) can easily trounce an NSMutableArray.

    0 讨论(0)
提交回复
热议问题