其他分享
首页 > 其他分享> > 【力扣】[热题HOT100] 438.找到字符串中所有的异位词

【力扣】[热题HOT100] 438.找到字符串中所有的异位词

作者:互联网

1、题目

给定一个字符串 s 和一个非空字符串 p,找到 s 中所有是 p 的字母异位词的子串,返回这些子串的起始索引。

字符串只包含小写英文字母,并且字符串 s 和 p 的长度都不超过 20100。

说明:

字母异位词指字母相同,但排列不同的字符串。
不考虑答案输出的顺序。

链接:https://leetcode-cn.com/problems/find-all-anagrams-in-a-string/

2、思路分析

1)滑动窗口
将p的所有字符全部存储到vector中,然后滑动s中的窗口,判断need和我windows是不是相等,相等,则push_back滑动窗口的左下标。

class Solution {
public:
    vector<int> findAnagrams(string s, string p) {
        vector<int> ans;
        if(s.size() == 0 || p.size() > s.size()) return ans; // 代码健壮性检测

        vector<int> need(128, 0);
        vector<int> windows(128, 0);
        for(auto & e: p)
            need[e]++;
        // 先将前几个字符放到滑动窗口中
        for(int i = 0; i < p.size() - 1; ++i)
        {
            windows[s[i]]++;
        }
        int l = 0;
        int r = p.size() - 1;
        while(r < s.size())
        {
        	// 利用l和r来决定窗口中的字符
            windows[s[r++]]++;
            if(windows == need) ans.push_back(l); // 将符合条件的push_back
            windows[s[l++]]--;
        }
        return ans;
    }
};

标签:++,力扣,windows,vector,HOT100,438,ans,字符串,size
来源: https://blog.csdn.net/weixin_43967449/article/details/118670181