欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 旅游 > 【Hot100】LeetCode—3. 无重复字符的最长子串

【Hot100】LeetCode—3. 无重复字符的最长子串

2024/11/30 6:43:40 来源:https://blog.csdn.net/weixin_44382896/article/details/141155945  浏览:    关键词:【Hot100】LeetCode—3. 无重复字符的最长子串

目录

  • 1- 思路
    • 滑动窗口
  • 2- 实现
    • ⭐3. 无重复字符的最长子串——题解思路
  • 3- ACM 实现


  • 原题链接:3. 无重复字符的最长子串

1- 思路

滑动窗口

  • 借助 HashSet 来实现判重
  • 通过指针 iright 指针实现一个滑动窗口

2- 实现

⭐3. 无重复字符的最长子串——题解思路

在这里插入图片描述

class Solution {public int lengthOfLongestSubstring(String s) {HashSet<Character> hs = new HashSet<>();int res = 0;int right = 0;for(int i = 0 ; i < s.length();i++){// 移除前一个if (i != 0) {hs.remove(s.charAt(i - 1));}while (right < s.length() && !hs.contains(s.charAt(right))) {hs.add(s.charAt(right));right++;}res = Math.max(res, hs.size());}return res;}
}

3- ACM 实现

public class noDuplicate {private static int nonDuplicate(String s){HashSet<Character> hs = new HashSet<>();int res = 0;int right = 0;// 2.遍历for(int i = 0 ; i < s.length();i++){// 2.2 去重if(i>0){hs.remove(s.charAt(i-1));}// 2.3 whilewhile(right<s.length() && !hs.contains(s.charAt(right))){hs.add(s.charAt(right));right++;}res = Math.max(res,hs.size());}return res;}public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("输入字符串");String s = sc.nextLine();System.out.println("结果是"+nonDuplicate(s));}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com