Objective-C 行列实现

Objective-C 队列实现
Objective-C 队列实现

原贴地址:http://blog.csdn.net/cloudhsu/article/details/6589313

Objective-C同样没有提供Queue容器,因此我也自己实践了一个
#import <Foundation/Foundation.h>
@interface NSQueue : NSObject {
NSMutableArray* m_array;
}
- (void)enqueue:(id)anObject;
- (id)dequeue;
- (void)clear;
@property (nonatomic, readonly) int count;
@end

#import "NSQueue.h"
@implementation NSQueue
@synthesize count;
- (id)init
{
if( self=[super init] )
{
m_array = [[NSMutableArray alloc] init];
count = 0;
}
return self;
}
- (void)dealloc {
[m_array release];
//[self dealloc]; --递你妹的归啊
    [super dealloc];
}
- (void)enqueue:(id)anObject
{
[m_array addObject:anObject];
count = m_array.count;
}
- (id)dequeue
{
    id obj = nil;
    if(m_array.count > 0)
    {
        obj = [[[m_array objectAtIndex:0]retain]autorelease];
        [m_array removeObjectAtIndex:0];
        count = m_array.count;
    }
    return obj;
}
- (void)clear
{
[m_array removeAllObjects];
        count = 0;
}
@end

另一版本:

#import <Foundation/Foundation.h>
@interface NSQueue : NSObject {
NSMutableArray* m_array;
}
- (void)enqueue:(id)anObject;
- (id)dequeue;
- (void)clear;
@property (nonatomic, readonly) int count;
@end
#import "NSQueue.h"
@implementation NSQueue
@synthesize count;
- (id)init
{
    if( self=[super init] )
    {
        m_array = [[NSMutableArray alloc] init];
    }
    return self;
}
- (void)dealloc {
    [m_array release];
    [super dealloc];
}
- (void)enqueue:(id)anObject
{
    [m_array addObject:anObject];
}
- (id)dequeue
{
    id obj = nil;
    if(m_array.count > 0)
    {
        obj = [[[m_array objectAtIndex:0]retain]autorelease];
        [m_array removeObjectAtIndex:0];
    }
    return obj;
}
- (void)clear
{
    [m_array removeAllObjects];
}
- (int) count{
    return [m_array count];
}
@end