LetterCombinationsOfAPhoneNumber

电话号码的字母组合

题目介绍

电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。

给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。

17

示例 :

1
2
输入:"23"
输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。

题目解法

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
47
48
49
50
51
package algorithm;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class LetterCombinationsOfAPhoneNumber {

public static List<String> letterCombinations(String digits) {
List<String> combinations = new ArrayList<>();
if (digits.length() == 0) {
return combinations;
}
backtrack(combinations, phoneMap, digits, 0, new StringBuffer());
return combinations;
}

static Map<Character, String> phoneMap = new HashMap<Character, String>() {{
put('2', "abc");
put('3', "def");
put('4', "ghi");
put('5', "jkl");
put('6', "mno");
put('7', "pqrs");
put('8', "tuv");
put('9', "wxyz");
}};

private static void backtrack(List<String> combinations, Map<Character, String> phoneMap,
String digits, int index, StringBuffer combination) {
if (index == digits.length()) {
// 已经到最后了,不需要递归
combinations.add(combination.toString());
} else {
char first = digits.charAt(index);
String letters = phoneMap.get(first);
for (int i = 0; i < letters.length(); i++) {
combination.append(letters.charAt(i));
backtrack(combinations, phoneMap, digits, index + 1, combination);
// 上一步的拼装如果成功,for循环进行下一轮,需要删除这一层追加的同等级字母
combination.deleteCharAt(index);
}
}
}

public static void main(String[] args) {
String digits = "23";
System.out.println(letterCombinations(digits));
}
}

打印:

1
[ad, ae, af, bd, be, bf, cd, ce, cf]

思路:

递归。


LetterCombinationsOfAPhoneNumber
https://yangtzeshore.github.io/2021/01/22/LetterCombinationsOfAPhoneNumber/
作者
Chen Peng
发布于
2021年1月22日
许可协议