leetcode Longest Substring Without Repeating Characters解题记录

此题我的代码:

class Solution
{
public:
int lengthOfLongestSubstring(string s) 
{
unordered_map<char, int> record;
char pivot;
int max_lenth=0;
int head=0;
for (int i = 0; i < s.length(); ++i)
{
pivot = s[i];
if (record.find(pivot) != record.end())
{
max_lenth = max_lenth >= (i - head) ? max_lenth : (i - head);
i = record[pivot];
head = record[pivot] + 1;
record.clear();
}
else if (i != s.length()-1)
{
record[pivot] = i;
}
else
max_lenth = max_lenth >= (s.length() - head) ? max_lenth : (s.length() - head);
}
return max_lenth;
}
};

我的办法属于比较简单的遍历,一旦遇到有重复的字符串,则记录下当前的不重复字符串长度,并与当前最大不重复字符串长度比较,取最大值。

这个题目有一个O(n)的解法,用动态规划,其核心思想:

假设L(i) = s[m,i]是最大不重复字符串,

则找到s[i+1]:如果s[i+1]与L(i)中字符重复,找到重复字符k, m=max(k,m)

若s[i+1]不重复,则L(i) = s[m,i+1]

因为每个字符只需要遍历一次,故而为O(n)的复杂度。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值