-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp17.cpp
48 lines (44 loc) · 1.08 KB
/
p17.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
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;
class Solution {
public:
vector<string> kb = {"",
"", "abc", "def",
"ghi", "jkl", "mno",
"pqrs", "tuv", "wxyz"};
void f(string digits, string s, vector<string> &res) {
if (digits.size()==0) {
if (s.size()!=0) res.push_back(s);
return;
}
auto set=kb[digits[0]-'0'];
if (set.size()!=0)
for (auto v:set) {
f(digits.substr(1),s+v,res);
}
else f(digits.substr(1),s,res);
return;
}
vector<string> letterCombinations(string digits) {
vector<string> res;
f(digits,"",res);
return res;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
auto res = Solution().letterCombinations("23");
for (auto v:res)
cout << v <<endl;
return 0;
}