给出一串单词,说" OhMy",保持大写字母固定(不变),但我们可以改变小写字母的位置。输出所有可能的排列。
例如。给予" OhMy"它应该输出[" OhMy"," OyMh"]
这是我做的:
public static List<String> Permutation(String s){
List<String> res = new ArrayList<String>();
if (s == null || s.length() == 0){
return res;
}
StringBuilder path = new StringBuilder(s);
List<Character> candidates = new ArrayList<Character>();
List<Integer> position = new ArrayList<Integer>();
for (int i = 0; i < s.length(); i++){
char c = s.charAt(i);
if (Character.isAlphabetic(c) && Character.isLowerCase(c)){
candidates.add(c);
position.add(i);
}
}
boolean[] occurred = new boolean[candidates.size()];
helper(res, path, candidates, position, 0);
return res;
}
public static void helper(List<String> res, StringBuilder path, List<Character> candidates, List<Integer> position, int index){
if (index == position.size()){
res.add(path.toString());
return ;
}
for (int i = index; i < position.size(); i++){
for (int j = 0; j < candidates.size(); j++){
path.setCharAt(position.get(i), candidates.get(j));
char c = candidates.remove(j);
helper(res, path, candidates, position, index+1);
candidates.add(j, c);
}
}
}
输入&#34; Abc&#34; 它会有结果[Abc,Acb,Acc,Acb] 本质上,外循环迭代每个可能的位置,内循环在每个可能的位置尝试每个可能的候选。 我不知道为什么它会复制li&#34; Acc,Acb&#34;
答案 0 :(得分:1)
您的隐含问题的主要观点似乎是如何有效地枚举给定集合的所有排列,您可以在线阅读(有几种方法)。如果你可以枚举小写字母索引的所有排列,那么保持书籍并将小写字母的每个排列与原始未改变的大写字母组合在一起,相对于大写字母的位置非常简单,所以你可以输出你的字符串。如果您对该部分感到困难,请更新您的问题,并且有人应该能够帮助您。