力扣算法之《438. 找到字符串中所有字母异位词》

本文详细解析了力扣算法题目《438.找到字符串中所有字母异位词》,通过滑动窗口的方法实现了一个高效的解决方案,并附上了完整的代码实现。

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

力扣算法之《438. 找到字符串中所有字母异位词》(附:第一次遇上滑块问题,参照官网解决方法手打代码 😦)

class Solution {
    public List<Integer> findAnagrams(String s, String p) {
        // type the following code follow the solution of official website of Likou 
        if(s.length() < p.length())return new ArrayList<Integer>();
        List<Integer> ans = new ArrayList<Integer>();
        int slen = s.length(), plen = p.length();
        int []ss = new int[26];
        int []pp = new int[26];
        
        // initial ss and pp
        for(int i=0; i < plen; ++i){
            ss[s.charAt(i) - 'a']++;
            pp[p.charAt(i) - 'a']++;
        }
        if(Arrays.equals(ss, pp)){
            ans.add(0);
        }
        
        // start to slide
        for(int i = 0; i < slen - plen; ++i){
            ss[s.charAt(i) - 'a']--; // recover the front state
            ss[s.charAt(i+plen) - 'a']++; // update the next state
            // slide success
            if(Arrays.equals(ss, pp)){
                ans.add(i+1);
            }
        }
        
        return ans;
        // type the following code follow the solution of official website of Likou 
    }
}

小白一枚,请各位大佬指教 😃!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值