17. 电话号码的字母组合
题目描述
给定一个仅包含数字2-9的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。
示例:
输入:"23"
输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。
思路
回溯算法
实现
class Solution {
public List<String> letterCombinations(String digits) {
if(digits.equals("")) {
return new ArrayList<>();
}
Map<Character, String> dict = new HashMap<>();
completeDict(dict);
List<String> res = new ArrayList<>();
res.add("");
for(int i=0; i<digits.length(); i++) {
int sz = res.size();
String nums = dict.get(digits.charAt(i));
for(int j=0; j<sz; j++) {
String s = res.get(0);
res.remove(0);
for(int k=0; k<nums.length(); k++) {
String sub = s + nums.charAt(k);
res.add(sub);
}
}
}
return res;
}
public void completeDict(Map<Character, String> dict) {
dict.put('2', "abc");
dict.put('3', "def");
dict.put('4', "ghi");
dict.put('5', "jkl");
dict.put('6', "mno");
dict.put('7', "pqrs");
dict.put('8', "tuv");
dict.put('9', "wxyz");
}
}