LeetCode 3. Longest Substring Without Repeating Characters

本文介绍了一种求解字符串中最长无重复字符子串长度的高效算法。通过双指针技术实现,辅以字符出现标记,确保算法的快速响应。适用于需要查找最长不重复子串的应用场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Given a string, find the length of the longest substring without repeating characters.

Example 1:

Input: "abcabcbb"
Output: 3 
Explanation: The answer is"abc", with the length of 3. 

Example 2:

Input: "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.

Example 3:

Input: "pwwkew"
Output: 3
Explanation: 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.

题意:

输出最长连续无重复字符的子串长度

解题:

维护两个指针l,r,如果右指针这个字符没有在l —(r-1)区间中出现,统计数+1,并与答案比较,大于答案的话更新答案,如果出现了,那么左指针右移,直到l—(r-1)区间不包含当前字符。

代码:

int lengthOfLongestSubstring(char* s) {
	
	int ans=0,sum=0;
	int le=strlen(s),l=0,r=0;
	if(le==0) return 0;
	int *p=(int *)malloc(128*sizeof(int));   //记录当前字符有没有出现,128这个值是测出来的,题目没有说字符最大是多少,我交了几发之后发现128是能过的
	for (int i=0;i<128;i++) 
		p[i]=0;
	while(1)
	{
		if(p[s[r]]==0)  //没有出现
		{	
			sum++;
			if(sum>ans) ans=sum;
			p[s[r]]=1;
			r++;
		}
		else 
		{
			while(p[s[r]]==1) //出现
			{
				if(l<r)   //当左指针位置小于右指针
				{
					p[s[l]]=0;
					l++;
					sum--;
				} 
			}//如果l==r那么p[s[r]]一定就不会出现,因为我们还没有取r这个点,所以不会死循环
		}
		if(r==le||l==le) break; //当右指针超出范围,那么累积值不可能会再超过答案了
	}
	return ans;   
}

 

这样写跑的非常快

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值