-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
73 lines (66 loc) · 1.61 KB
/
main.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <iostream>
using namespace std;
class Solution {
private:
string digits;
string str;
vector<string> ans;
unordered_map<char, string> alphabet;
void dfs(int index, string str) {
if (index == digits.length()) {
ans.push_back(str);
return;
}
for (char ch: alphabet[digits[index]]) {
dfs(index + 1, str + ch);
}
}
void dfs2(int index) {
if (index == digits.length()) {
ans.push_back(str);
return;
}
for (char ch: alphabet[digits[index]]) {
str.push_back(ch);
dfs2(index + 1);
str.pop_back();
}
}
public:
vector<string> letterCombinations(string digits) {
this->digits = digits;
alphabet['2'] = "abc";
alphabet['3'] = "def";
alphabet['4'] = "ghi";
alphabet['5'] = "jkl";
alphabet['6'] = "mno";
alphabet['7'] = "pqrs";
alphabet['8'] = "tuv";
alphabet['9'] = "wxyz";
if (digits.empty()) return {};
dfs(0, "");
return ans;
}
/**
* 优化空间
* @param digits
* @return
*/
vector<string> letterCombinations2(string digits) {
this->digits = digits;
alphabet['2'] = "abc";
alphabet['3'] = "def";
alphabet['4'] = "ghi";
alphabet['5'] = "jkl";
alphabet['6'] = "mno";
alphabet['7'] = "pqrs";
alphabet['8'] = "tuv";
alphabet['9'] = "wxyz";
if (digits.empty()) return {};
dfs2(0);
return ans;
}
};
int main() {
return 0;
}