美文网首页
Lintcode384 Longest Substring Wi

Lintcode384 Longest Substring Wi

作者: 程风破浪会有时 | 来源:发表于2017-12-20 22:12 被阅读0次

    【题目描述】

    Given a string, find the length of the longest substring without repeating characters.

    给定一个字符串,请找出其中无重复字符的最长子字符串。

    【题目链接】

    www.lintcode.com/en/problem/longest-substring-without-repeating-characters/

    【题目解析】

    用两个指针start和end,一个指向当前子串的头,一个指向尾,end尾指针不断往后扫描,当有字符前面出现过了,记录当前子串长度和最优解的比较结果。然后头指针不断往后扫描,直到扫描到一个字符和尾指针相同,则尾指针继续扫描,当尾指针到达字符串结尾,算法结束。

    【参考答案】

    www.jiuzhang.com/solutions/longest-substring-without-repeating-characters/

    相关文章

      网友评论

          本文标题:Lintcode384 Longest Substring Wi

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