Leetcode日记(3)---Longest Substring Without Repeating Characters

来源:互联网 发布:呼叫中心软件 编辑:程序博客网 时间:2024/06/03 17:54

LeetCode(3) Longest Substring Without Repeating Characters

源代码如下:

class Solution {public:    int lengthOfLongestSubstring(string s) {        int num[256];        memset(num, 0, sizeof(num));        int start = 0, end = 0;        int len = s.length();        int ans = 0;        while (true) {            while (end < len && !num[s[end]]) {                num[s[end++]]++;            }            if (end - start > ans) {                ans = end - start;            }            if (end >= len) {                break;            }            while (num[s[end]]) {                num[s[start++]]--;            }        }        return ans;    }};
  • 该算法中,num[s[end]]处理,不是怎么明白
  • 需要使用调试工具,看一下程序执行的过程
  • num[s[end]],譬如第一次循环,s[0]=a,num[a]这里面的a是不是换算成了‘a’=97;所以num[s[end]]实际上num[97]

自己注释的代码如下

#include<string>#include<cstring>#include<iostream>using namespace std;/*    1.wsh    2.leetcode id=3*/class Solution {public:    int lengthOfLongestSubstring(string s) {        int num[256];        memset(num, 0, sizeof(num));        int start = 0, end = 0;        int len = s.length();        int ans = 0;        while (true) {            while (end < len && !num[s[end]]) {                 /*                    1.s[end]='a' or 'b'  or 'c' ...                    2.num[s[end]],eg->num[a]=num[97],'a'->data                    3.check character is repeated                */                num[s[end++]]++;            }            if (end - start > ans) {                /*                    1.判断最大子字符串                */                ans = end - start;            }            if (end >= len) {                break;            }            while (num[s[end]]) {                /*                    1.当有重复字符出现的时候,start+1,下一个字符为起始位置重新遍历                */                num[s[start++]]--;            }        }        return ans;    }};int main(){    Solution s1;    string s("abcdabc");    cout<<s1.lengthOfLongestSubstring(s);    return 0;}

  • string 的用法也不是非常熟悉,查询了cplusplus.

string(cplusplus)

  • 字符串string s ,s[i]
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;    }};
0 0
原创粉丝点击