algo/object-c/33_bm_match/main.m
2018-12-11 12:24:14 +08:00

24 lines
537 B
Objective-C

//
// main.m
// BM-Match
//
// Created by Smallfly on 2018/12/9.
// Copyright © 2018 Smallfly. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BM.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
BM *bm = [[BM alloc] initWithA:@"abacadc" andB:@"adc"];
[bm startMatchCompeletion:^(NSInteger index) {
NSLog(@"异步查找到下标:%ld\n", index);
}];
NSLog(@"同步查找到下标:%ld\n", [bm startMatch]);
}
return 0;
}