zoukankan      html  css  js  c++  java
  • [LeetCode] Longest Substring Without Repeating Characters

    Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

    http://blog.csdn.net/pickless/article/details/9018575

    #if 0
    class Solution {
    public:
        int lengthOfLongestSubstring(string s) {
            // Start typing your C/C++ solution below
            // DO NOT write int main() function
            int locs[256];//保存字符上一次出现的位置
            memset(locs, -1, sizeof(locs));
    
            int idx = -1, max = 0;//idx为当前子串的开始位置-1
            for (int i = 0; i < s.size(); i++)
            {
                if (locs[s[i]] > idx)//如果当前字符出现过,那么当前子串的起始位置为这个字符上一次出现的位置+1
                {
                    idx = locs[s[i]];
                }
    
                if (i - idx > max)
                {
                    max = i - idx;
                }
    
                locs[s[i]] = i;
            }
            return max;
        }
    };
    #endif
    class Solution 
    {
        public:   
            int lengthOfLongestSubstring(string s)  
            {   
                int hash[256]; // save the index of s[i]
                int  start = -1; 
                int len = 0;
    
                memset(hash, -1, sizeof(hash));
    
                for(int i = 0; i< s.size(); i++/**/)
                {   
                    // update the start if the start is in the front of the old hash[s[i]]
                    if(start < hash[s[i]])
                        start = hash[s[i]];
                    len = max(i - start, len);
                    hash[s[i]] = i;
                }   
    
                return len;
            }   
    };
  • 相关阅读:
    SDOI2008]仪仗队
    洛谷P1414 又是毕业季II
    P3865 【模板】ST表
    [HAOI2007]理想的正方形
    noip 2011 选择客栈
    [AHOI2009]中国象棋
    洛谷P3387 【模板】缩点
    [SCOI2005]最大子矩阵
    [CQOI2009]叶子的染色
    LibreOJ #116. 有源汇有上下界最大流
  • 原文地址:https://www.cnblogs.com/diegodu/p/4244521.html
Copyright © 2011-2022 走看看