algo/object-c/08_stack/stack_practice/ArrayStack.h
2018-10-09 16:04:07 +08:00

22 lines
236 B
Objective-C

/**
栈实现
Author: Smallfly
*/
#import <Foundation/Foundation.h>
@interface Stack : NSObject
- (id)initWithCapacity:(NSUInteger)count;
- (BOOL)isEmpty;
- (id)top;
- (NSUInteger)size;
- (BOOL)push:(id)obj;
- (id)pop;
@end