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.

    Examples:

    Given "abcabcbb", the answer is "abc", which the length is 3.

    Given "bbbbb", the answer is "b", with the length of 1.

    Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.

     1 // https://discuss.leetcode.com/topic/30941/here-is-a-10-line-template-that-can-solve-most-substring-problems/12
     2 class Solution {
     3 public:
     4     int lengthOfLongestSubstring(string s) {
     5         int begin = 0, end = 0, d =0;
     6         int map[128];
     7         memset(map, 0, 128 * sizeof(int));
     8         int counter = 0;
     9         
    10         while (end < s.size()){
    11             if (map[s[end]] > 0) counter++;
    12             map[s[end]]++;
    13             end++;
    14             while (counter > 0){
    15                 if (map[s[begin]] > 1) counter--;
    16                 map[s[begin]]--;
    17                 begin++;
    18             }
    19             d = max(d, end - begin);
    20         }
    21         
    22         return d;
    23     }
    24 };
  • 相关阅读:
    Python 面向对象编程
    snmp获取交换机端口和对应ip
    python IPy
    Django F()与Q()函数
    装饰器使用
    log日志信息查看
    shell简单入门
    gunicorn开启、关闭和重启
    CF1453B
    ACWing845 八数码(BFS,全排列hash)
  • 原文地址:https://www.cnblogs.com/amadis/p/5904342.html
Copyright © 2011-2022 走看看