17 电话号码的字母组合

本文最后更新于:2022年4月9日 中午

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

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

img

示例:

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

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

Solution

参考 liuyubobobo 的解题思路、代码随想录

  • 回溯法
  • index 记录遍历第几个数字了,就是用来遍历digits的(题目中给出数字字符串),同时index也表示树的深度。
图片
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
// @lc code=start
class Solution {
private:
const string letterMap[10] = {
" ", // 0
"", // 1
"abc", // 2
"def", // 3
"ghi", // 4
"jkl", // 5
"mno", // 6
"pqrs", // 7
"tuv", // 8
"wxyz", // 9
};
vector<string> res;

void findCombination(const string& digits, int index, const string& s){
if(index==digits.size()){
res.push_back(s);
return;
}
char c = digits[index];
string letters = letterMap[c-'0'];
for(int i=0; i<letters.size(); ++i){
// s.push_back(letters[i]);
findCombination(digits, index+1, s+letters[i]);
// s.pop_back();
}
return;
}

public:
vector<string> letterCombinations(string digits) {
res.clear();
if(digits=="")
return res;
findCombination(digits, 0, "");
return res;
}
};
// @lc code=end

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!