- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
java解法
- 解题思路
- 字母映射关系: 每个数字(0到9)对应一定的字母集合。可以使用一个数组 map 来表示这种映射关系。map[i] 表示数字 i 对应的字母集合。例如,map[2] 对应字母 “abc”。
生成所有字母组合: 由于输入的数字串 nums 可能对应多个字母,我们需要生成所有可能的字母组合。可以通过类似多重循环的方式生成这些组合,每个数字选择一个字母进行拼接。为了避免直接使用多层循环,我们使用一个数组 indices 来表示每个数字在其对应字母集合中的当前位置,然后利用该数组进行组合生成。
组合生成:
从左到右遍历每个数字,选择其对应字母集合中的一个字母。
使用一个 StringBuilder 来拼接当前组合,并将其加入结果列表 result,如果该组合不包含屏蔽字符串中的所有字符。
递增逻辑:
当我们生成一个字母组合后,需要递增组合的 “位置”。如果某一位的字母已经到达其字母集合的最后一个字母,则回退到该集合的第一个字母,并递增上一位。
如果所有的字母集合都回退到第一个字母,说明所有组合已经生成完毕。
返回结果:
最终,将所有符合条件的字母组合连接成一个以逗号分隔的字符串,返回。
import java.util.*;
public class Main {
static String nums;
static String filter;
static String[] map = {"abc", "def", "ghi", "jkl", "mno", "pqr", "st", "uv", "wx", "yz"};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
nums = sc.nextLine();
filter = sc.nextLine();
System.out.println(getResult());
}
public static String getResult() {
int n = nums.length();
int[] indices = new int[n];
List<String> result = new ArrayList<>();
while (true) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < n; i++) {
sb.append(map[nums.charAt(i) - '0'].charAt(indices[i]));
}
if (!containsAll(sb.toString(), filter)) {
result.add(sb.toString());
}
int pos = n - 1;
while (pos >= 0) {
if (indices[pos] < map[nums.charAt(pos) - '0'].length() - 1) {
indices[pos]++;
break;
} else {
indices[pos] = 0;
pos--;
}
}
if (pos < 0) break;
}
return String.join(",", result) + ",";
}
public static boolean containsAll(String s, String filter) {
for (char c : filter.toCharArray()) {
if (!s.contains(String.valueOf(c))) {
return false;
}
}
return true;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: