4

我有一个词需要用星号替换某个字符,但我需要从这个词中获取所有替换的变体。例如。我想用星号替换字符'e':

String word = telephone;

但是要得到这个列表:

List of words = [t*lephone, tel*phone, telephon*, t*l*phone, t*lephon*, tel*phon*, t*l*phon*];

有没有一种快速的方法可以在 Java 中做到这一点?

4

1 回答 1

5

以下代码将以递归方式执行此操作:

public static Set<String> getPermutations(final String string, final char c) {
    final Set<String> permutations = new HashSet<>();
    final int indexofChar = string.indexOf(c);
    if (indexofChar <= 0) {
        permutations.add(string);
    } else {
        final String firstPart = string.substring(0, indexofChar + 1);
        final String firstPartReplaced = firstPart.replace(c, '*');
        final String lastPart = string.substring(indexofChar + 1, string.length());
        for (final String lastPartPerm : getPermutations(lastPart, c)) {
            permutations.add(firstPart + lastPartPerm);
            permutations.add(firstPartReplaced + lastPartPerm);
        }
    }
    return permutations;
}

它将原始内容添加String到输出中,因此:

public static void main(String[] args) {
    String word = "telephone";
    System.out.println(getPermutations(word, 'e'));
}

输出:

[telephone, t*lephone, tel*phone, t*l*phone, telephon*, t*lephon*, tel*phon*, t*l*phon*]

但是你总是可以用原词调用remove返回的。Set

于 2013-03-26T17:14:24.973 回答