doulan7166 2013-02-17 18:36
浏览 58
已采纳

大UTF-8字符串的快速fmt.Scanf()

I have a string of about 8000000 UTF-8 characters. Scanning it via fmt.Scanf() takes about 10 seconds, how can I do it faster? I have a Go wrapper for C scanf() function that was written by my teacher as a workaround for some bugs in Go's fmt.Scanf(), it works in 1-2 seconds, but I don't like using side packages for such simple tasks. Could you suggest some faster way of reading strings in pure Go?

  • 写回答

1条回答 默认 最新

  • dongruyan4948 2013-02-17 19:13
    关注

    Found the solution. bufio works much faster (as it's buffered, and fmt's functions are not, and it doesn't parse anything):

    reader := bufio.NewReader(os.Stdin)
    str, _ := reader.ReadString('
    ')   // Like fmt.Scanf("%s", &str), but faster
    var x, y rune
    fmt.Fscanf(reader, "%c %c", &x, &y) // I need to read something else
                                        // (see comments for the question)
                                        // It's easy, as I can use fmt.Fscanf
    

    ...even faster that that C scanf() wrapper.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作