我有一个超过 280.000 多个单词的巨大单词列表,这些单词从 sqlite 数据库加载到 NSArray。然后我进行快速枚举以检查用户输入的某个字符串值是否与数组中的某个单词匹配。由于阵列太大,iphone 4 大约需要 1-2 秒才能通过该阵列。
我怎样才能提高性能?也许我应该制作几个较小的数组?字母表中的每个字母一个,这样可以减少要处理的数据。
这就是我的数据库类的外观
static WordDatabase *_database;
+(WordDatabase *) database
{
if (_database == nil) {
_database = [[WordDatabase alloc] init];
}
return _database;
}
- (id) init
{
if ((self = [super init])) {
NSString *sqLiteDb = [[NSBundle mainBundle] pathForResource:@"dictionary" ofType:@"sqlite"];
if (sqlite3_open([sqLiteDb UTF8String], &_database) != SQLITE_OK) {
NSLog(@"Failed to open database!");
}
}
return self;
}
- (NSArray *)dictionaryWords {
NSMutableArray *retval = [[[NSMutableArray alloc] init] autorelease];
NSString *query = @"SELECT word FROM words";
sqlite3_stmt *statement;
if (sqlite3_prepare_v2(_database, [query UTF8String], -1, &statement, nil) == SQLITE_OK) {
while (sqlite3_step(statement) == SQLITE_ROW) {
char *wordChars = (char *) sqlite3_column_text(statement, 0);
NSString *name = [[NSString alloc] initWithUTF8String:wordChars];
name = [name uppercaseString];
[retval addObject:name];
}
sqlite3_finalize(statement);
}
return retval;
}
然后在我的主视图中我像这样初始化它
dictionary = [[NSArray alloc] initWithArray:[WordDatabase database].dictionaryWords];
最后我使用这种方法遍历数组
- (void) checkWord
{
NSString *userWord = formedWord.wordLabel.string;
NSLog(@"checking dictionary for %@", userWord);
for (NSString *word in dictionary) {
if ([userWord isEqualToString: word]) {
NSLog(@"match found");
}
}
}