zoukankan      html  css  js  c++  java
  • [LeetCode] #3 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.

    input:abcabcbb

    output:abc

    这篇其实我先将字符中的各种字符存在str_map中,然后通过设定初始位子以及各字符的最后出现的位置来判定子串的开始位置和子串的长度。时间复杂度O(n),时间:122ms

    代码如下:

    class Solution {
    public:
        int lengthOfLongestSubstring(string s) {
            map<char, int> str_map;
            int maxlen = 0, flag = -1;
            for (int i = 0; i < s.size(); i++){
                if (!str_map.count(s[i])){
                    str_map.insert(make_pair(s[i], -1));
                }
            }
            for (int i = 0; i < s.size(); i++){
                if (str_map[s[i]]>flag)
                    flag=str_map[s[i]];
                if (i - flag > maxlen)
                    maxlen = i - flag;
                str_map[s[i]] = i;
            }
            return maxlen;
        }
    };
    “If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime.”
  • 相关阅读:
    CF733F
    P4826
    洛谷P2687 & P1108
    CF42A
    洛谷P1858
    CF1428C
    洛谷P4981
    树形DP
    背包六讲(也不知道为啥就是六个 $QwQ$)
    2020
  • 原文地址:https://www.cnblogs.com/Scorpio989/p/4394801.html
Copyright © 2011-2022 走看看