首页 > 其他 > 详细

leetcode 3 Longest Substring Without Repeating Characters

时间:2017-01-29 20:38:05      阅读:214      评论:0      收藏:0      [点我收藏+]
class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int m[256] = {0}, res = 0, left = 0;
        for (int i = 0; i < s.size(); ++i) {
            if (m[s[i]] == 0 || m[s[i]] < left) {
                res = max(res, i - left + 1);
            } else {
                left = m[s[i]];
            }
            m[s[i]] = i + 1;
        }
        return res;
    }
};

leetcode 3 Longest Substring Without Repeating Characters

原文:http://www.cnblogs.com/wangkun1993/p/6357642.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!