LeetCode 438. 找到字符串中所有字母异位词__滑动窗口

438. 找到字符串中所有字母异位词

给定两个字符串 s 和 p,找到 s 中所有 p 的 异位词 的子串,返回这些子串的起始索引。不考虑答案输出的顺序。

异位词 指由相同字母重排列形成的字符串(包括相同的字符串)。

示例 1:

输入: s = "cbaebabacd", p = "abc"
输出: [0,6]
解释:
起始索引等于 0 的子串是 "cba", 它是 "abc" 的异位词。
起始索引等于 6 的子串是 "bac", 它是 "abc" 的异位词。
 示例 2:

输入: s = "abab", p = "ab"
输出: [0,1,2]
解释:
起始索引等于 0 的子串是 "ab", 它是 "ab" 的异位词。
起始索引等于 1 的子串是 "ba", 它是 "ab" 的异位词。
起始索引等于 2 的子串是 "ab", 它是 "ab" 的异位词。
 

提示:

1 <= s.length, p.length <= 3 * 104
s 和 p 仅包含小写字母

Solution1(直白滑窗):

显然这题我们可以使用滑动窗口来解决,即直接维护p字符串长度的窗口,每当窗口满时就判断一下窗口内的各种字母数量是否和p的一致即可。

Code1:

class Solution {
    public List<Integer> findAnagrams(String s, String p) {
        int[] hash = new int[26];
        int winLen = p.length();
        for(int i=0;i<winLen;i++){
            char c = p.charAt(i);
            hash[c - 'a']++;
        }

        List<Integer> res = new ArrayList<>();
        List<Integer> window = new ArrayList<>();
        for(int i=0;i<s.length();i++){
            char c = s.charAt(i);
            if(window.size() < winLen){
                window.add(i);
            }
            else{
                check(res,winLen,window,hash,s);
                window.remove((int)0);
                i--;
            }
        }
        if(window.size() < winLen){
            return res;
        }
        check(res,winLen,window,hash,s);
        return res;
    }

    public void check(List<Integer> res,int winLen,List<Integer> window,int[] hash,String s){
        int[] hashTemp = new int[26];
        for(int k=0;k<winLen;k++){
            Integer index = window.get(k);
            hashTemp[s.charAt(index) - 'a']++;
        }
        int j = 0;
        for(;j<26;j++){
            if(hash[j] != hashTemp[j])
                break;
        }
        if(j == 26){
            res.add(window.get(0));
        }
    }
}

Solution2(优化便捷滑窗):

我们可以不直接维护普通滑窗,因为我们发现上述方法一,由于是维护一个有序序列来模拟滑窗,后面还需要一个哈希数组来表示滑窗内含有的字母种类及数量,因此我们可以想只创建一次哈希数组即可,在滑窗滑出老元素和滑进新元素时直接在那一个哈希数组上进行修改就行。
接着我们发现,可以直接使用哈希数组代替滑窗的有序序列进行存储,只用两个下标来模拟滑窗即可,滑窗本身不需要存储内容,交给哈希数组存储即可。

Code2:

class Solution {
    public List<Integer> findAnagrams(String s, String p) {
        int slen = s.length();
        int plen = p.length();

        List<Integer> res = new ArrayList<>();
        if(s.length() < p.length()){
            return res;
        }
        
        int[] hash = new int[26];
        int[] hashTemp = new int[26];
        // 先给滑窗塞满
        for(int i=0;i<plen;i++){
            hash[p.charAt(i) - 'a']++;
            hashTemp[s.charAt(i) - 'a']++;
        }

        if(Arrays.equals(hash,hashTemp)){
            res.add(0);
        }

		// 维护滑窗的两个下标即可,一个头部,一个头部+滑窗长度即可
        for(int i=0;i<slen - plen ;i++){
            hashTemp[s.charAt(i) - 'a']--;
            hashTemp[s.charAt(i + plen) - 'a']++;
            if(Arrays.equals(hash,hashTemp)){
                res.add(i+1);
            }
        }

        return res;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

向光.

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值