• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

objective-c - 将单词列表字典加载到数组中的最快方法?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 13:13:57 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在开发一个基于单词的游戏,我需要将我的 180,000 单词词典 (1.9MB) 加载到一个数组中,以便求解算法可以使用它。字典只是每行一个单词,像这样:

a
ab
abs
absolutely
etc
...

现在我正在使用以下代码将该文件加载到数组中:

NSString *txtPath = [[NSBundle mainBundle] pathForResource"dict" ofType"txt"];
        NSString *stringFromFile = [[NSString alloc]
                                    initWithContentsOfFile:txtPath
                                    encoding:NSUTF8StringEncoding
                                    error:&error ];       
for (NSString *word in [stringFromFile componentsSeparatedByString"\r\n"]) {
            [wordsArray addObject:word];
        } 

这在 iPhone 4 上大约需要 3-4 秒。在较旧的 iOS 设备上可能会更慢。有没有更快的方法来做到这一点?



Best Answer-推荐答案


您可以使用 Grand Central Dispatch 或 GCD 在后台轻松执行此操作,离开主线程。

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0),^(void){
        NSString *txtPath = [[NSBundle mainBundle] pathForResource"dict" ofType"txt"];
        NSString *stringFromFile = [[NSString alloc]
                                    initWithContentsOfFile:txtPath
                                    encoding:NSUTF8StringEncoding
                                    error:&error ];       
        for (NSString *word in [stringFromFile componentsSeparatedByString"\r\n"]) {
            [wordsArray addObject:word];
        } 
});

I wrote the enclosing dispatch code from memory, but it's close (if not correct) and I think you get the idea.

EDIT: You can execute this code on the main thread, but what happens is a non-main-thread dispatch queue is where your code executes, thereby NOT blocking the UI.

You can improve the performance of your code here a little bit by replacing the for loop with just this:

[wordsArray setArray:[stringFromFile componentsSeparatedByString"\r\n"]];

应该不需要迭代 -componentsSeparatedByString: (一个数组)的结果,只是将它们放入 another 数组中。有了 180K 字,这应该可以节省大量时间。

关于objective-c - 将单词列表字典加载到数组中的最快方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10146171/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap