Find All Anagrams in a String

112 篇文章 0 订阅
20 篇文章 0 订阅

题目地址:https://leetcode.com/problems/find-all-anagrams-in-a-string/

Given a string s and a non-empty string p, find all the start indices of p’s anagrams in s.

Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100.

The order of output does not matter.

Example 1:

Input:
s: "cbaebabacd" p: "abc"

Output:
[0, 6]

Explanation:
The substring with start index = 0 is "cba", which is an anagram of "abc".
The substring with start index = 6 is "bac", which is an anagram of "abc".

Example 2:

Input:
s: "abab" p: "ab"

Output:
[0, 1, 2]

Explanation:
The substring with start index = 0 is "ab", which is an anagram of "ab".
The substring with start index = 1 is "ba", which is an anagram of "ab".
The substring with start index = 2 is "ab", which is an anagram of "ab".

这个题目的意思就是说在字符串s中,是否存在这样的子字符串,这个子字符串是字符串p的一种排列,如果存在,这输出这样的子字符串的所有的位置。

首先假如说s中存在这样的子字符串substr,那么substr的长度肯定跟p的长度是相等的。下来就是比较substr与p的关系了,是不是互为一种排列。

确定这种关系有很多种,比如将p和substr都排个序,然后比较排个序的两个字符串是不是相等,相等则互为排列,不相等则不互为排列。

或者用p中的每一个字符与substr中的字符比较,看是否存在,如果存在,则移除,注意:这一步移除很重要,如果不移除,很可能会重复比较,比如“ab”和“aa”,继续比较,直到p中的字符遍历完。如果不存在,那么就不再往下比较了,继续进行下一轮迭代。

实现代码如下:

public class FindAllAnagramsInAString {
    public List<Integer> findAnagrams(String s, String p) {
        List<Integer> result = new ArrayList<Integer>();

        int pLen = p.length();

        for (int i = 0; i <= s.length() - pLen; i++) {
            String subStr = s.substring(i, i + pLen);
            boolean isTrue = true;
            for (int j = 0; j < pLen; j++) {
                if (subStr.indexOf(p.charAt(j)) == -1) {
                    isTrue = false;
                    break;
                } else {
                    subStr = subStr.substring(0, subStr.indexOf(p.charAt(j))) + subStr.substring(subStr.indexOf(p.charAt(j)) + 1);
                    continue;
                }
            }
            if (isTrue)
                result.add(i);
        }
        return result;
    }

    public static void main(String[] args) {
        FindAllAnagramsInAString findAllAnagramsInAString = new FindAllAnagramsInAString();
        System.out.println(findAllAnagramsInAString.findAnagrams("baa", "aa"));
    }
}

以上实现虽然实现了相应的功能,但是时间复杂度比较高,不能通过所有的test case,主要问题还是有些案例超时,所以还需要进一步优化算法。

今天就写到这里,后续更新。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值