dongzha3058 2014-11-08 14:48
浏览 13
已采纳

什么是获取循环子串的最佳方法

I want something like:

var peptide = "LENQ"

peptide[2:3] -> NQ
peptide[2:4] -> NQL
peptide[2:5] -> NQLE

What is the best way in go to do it? May be there is a library function to get it or do I need to write it by myself ?

  • 写回答

1条回答 默认 最新

  • dongxun3777 2014-11-08 15:49
    关注

    For example,

    package main
    
    import (
        "fmt"
        "unicode/utf8"
    )
    
    func cyclicSubstrings(str string) []string {
        n := utf8.RuneCountInString(str)
        substrs := make([]string, 0, n*n)
        cycles := str + str
        for i := range str {
            cycle := cycles[i : i+len(str)]
            for j, r := range cycle {
                substrs = append(substrs, cycle[:j+utf8.RuneLen(r)])
            }
        }
        return substrs
    }
    
    func main() {
        peptide := "LENQ"
        fmt.Println(cyclicSubstrings(peptide))
    }
    

    Output:

    [L LE LEN LENQ E EN ENQ ENQL N NQ NQL NQLE Q QL QLE QLEN]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 idea自动补全键位冲突
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 定制ai直播实时换脸软件
  • ¥100 栈回溯相关,模块加载后KiExceptionDispatch无法正常回溯了
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错
  • ¥15 java python或者任何一种编程语言复刻一个网页