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

    class Solution {
    public:
        int lengthOfLongestSubstring(string s) {
            int len = s.length();
            if (len < 2) return len;
            char cnt[256];
            memset(cnt, 0, sizeof(cnt));
            
            const char* p = s.c_str();
            const char* q = p + 1;
            const char* end = s.c_str() + len - 1;
            
            int mlen = 1;
            cnt[*p] = 1;
            
            while(q <= end) {
                char ch = *q;
                int clen = q - p + (ch == 0);
                
                if (cnt[ch]) { // the character ch already exist in substr[p,q]
                    for(; *p != ch; p++) cnt[*p] = 0;
                    p++;
                } else {
                    cnt[ch] = 1;
                }
                if (clen > mlen) mlen = clen;
                q++;
            }
            
            return mlen;
        }
    };

    用[p, q]表示一个子串,cnt[ch]表示在这个子串中字符ch出现的次数,如果q移动到一个新的位置发现该位置上的字符ch对应的cnt[ch]==1,说明字符ch已经在[p, q-1]的子串中出现过,那么符合要求的子串必然不会包括[p, q]因为已经有重复了,那么我们就要让移动到子串中与ch重复的那个字符后面的位置如r(移动的同时要把经过的字符对应的计数清零),那么[r, q]子串中就没有重复了,就又可以继续向后检测了。

    第二轮:

    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.

    class Solution {
    public:
        int lengthOfLongestSubstring(string s) {
            if (s.size() <= 1) return s.size();
            int len = s.size();
            int start = 0;
            int dict[256] = {0};
            int maxlen = 1;
            for (int i=0; i<len; i++) {
                dict[s[i]]++;
                if (dict[s[i]] > 1) {
                    for (; s[i] != s[start]; start++) {
                        dict[s[start]]--;
                    }
                    dict[s[start++]]--;
                }
                
                if (i - start + 1 > maxlen) {
                    maxlen = i - start + 1;
                }
            }
            return maxlen;
        }
    };

    还是稍有不畅

    依然不畅

     1 // 20:09
     2 class Solution {
     3 public:
     4     int lengthOfLongestSubstring(string s) {
     5         vector<int> stat(256, 0);
     6         int len = s.length();
     7         if (len < 1) return 0;
     8         int res = 0;
     9         int pre = -1;
    10         int pos = 0;
    11         int maxres = 0;
    12         while (pos < len) {
    13             char ch = s[pos];
    14             stat[ch]++;
    15             if (stat[ch] > 1) {
    16                 while (s[++pre] != ch) stat[s[pre]]--;
    17                 stat[s[pre]]--;
    18                 res = pos - pre;
    19             } else {
    20                 res++;
    21             }
    22             maxres = max(maxres, res);
    23             pos++;
    24         }
    25         return maxres;
    26     }
    27 };

    看了书,写另一中解法,不过还是不流畅,这题真是。。。

    class Solution {
    public:
        int lengthOfLongestSubstring(string s) {
            int len = s.size();
            if (len < 2) {
                return len;
            }
            int dict[256];
            for (int i=0; i<256; i++) {
                dict[i] = -1;
            }
            int start = 0;
            int maxlen= 1;
            for (int i=0; i<len; i++) {
                if (dict[s[i]] != -1) {
                    start = max(dict[s[i]] + 1, start);
                }
                maxlen = max(maxlen, i - start + 1);
                dict[s[i]] = i;
            }
            return maxlen;
        }
    };
  • 相关阅读:
    什么是中断响应,其实质是什么?
    什么是中断,什么是俘获,中断和俘获有什么不同?
    什么是强迫性中断,什么是自愿中断,试举例说明?
    按中断的功能来分,中断有哪几种类型?
    什么是中断?在操作系统中为什么要引进中断?
    MySql按日期时间段进行统计(前一天、本周、某一天、某个时间段)
    JAVA判断上传表单中file是否为空
    Java中BigDecimal的8种舍入模式是怎样的
    BigDecimal类的加减乘除
    在Spring aop中的propagation的7种配置的意思
  • 原文地址:https://www.cnblogs.com/lailailai/p/3601875.html
Copyright © 2011-2022 走看看