LeetCode #3 Problem
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.
记录目前考察的子串的开头和结尾,出现过的字母、出现过的子串的字母的位置。
从头到尾扫这个数组,每往后扫一位,如果pos位置上的字母出现过,那就吧start移动到上一个这个字母出现的位置同时end++;如果没出现过那就end++。
第一次提交的时候以为这个字符串只有字母,WA了一次……看到测试数据的我是崩溃的……
C# Code
public class Solution
{
public int LengthOfLongestSubstring(string s)
{
int start = 0, end = 0;
bool[] exist = new bool[300];
int[] position = new int[300];
for (int i = 0; i < 200; i++)
{
exist[i] = false;
position[i] = 0;
}
for (int i = 0; i < s.Length; i++)
{
if (exist[s[i]] == true)
{
for (int j = start; j <= position[s[i]]; j++) exist[s[j]] = false;
start = position[s[i]] + 1;
exist[s[i]] = true;
position[s[i]] = i;
}
else
{
exist[s[i]] = true;
position[s[i]] = i;
if (end <= i - start + 1) end = i - start + 1;
}
}
return end;
}
}
LeetCode 3题解析
本文解析了LeetCode第3题:寻找给定字符串中最长的无重复字符子串的问题。通过跟踪子串的起始和结束位置,记录每个字符最后出现的位置,实现了高效的遍历算法。
334

被折叠的 条评论
为什么被折叠?



