美文网首页
LeetCode3. 无重复字符的最长子串

LeetCode3. 无重复字符的最长子串

作者: ikeaforever | 来源:发表于2020-03-09 21:43 被阅读0次

    给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。

    示例 1:

    输入: "abcabcbb"
    输出: 3 
    解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
    

    示例 2:

    输入: "bbbbb"
    输出: 1
    解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
    

    示例 3:

    输入: "pwwkew"
    输出: 3
    解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
         请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
    

    解题思路:

    func lengthOfLongestSubstring(s string) int {
        long := ""
        current := ""
        c := ""
        index := -1
        for i :=0; i < len(s); i++ {
            c = string(s[i])
            // 找到索引位置
            index = strings.Index(current, string(s[i]))
            if index == -1 {
                // 如果不存在,直接拼接后和long作比较
                current += c
                if len(current) > len(long) {
                    long = current
                }
            } else {
                // 如果存在就在索引位置后面截取数据然后拼接
                current = current[index+1:] + c
            }
        }
        return len(long)
    }
    

    相关文章

      网友评论

          本文标题:LeetCode3. 无重复字符的最长子串

          本文链接:https://www.haomeiwen.com/subject/odimdhtx.html