-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLetterCombinationsOfAPhoneNumber.h
56 lines (46 loc) · 1.71 KB
/
LetterCombinationsOfAPhoneNumber.h
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
/*
Author: naiyong, aonaiyong@gmail.com
Date: Oct 2, 2014
Problem: Letter Combinations of a Phone Number
Difficulty: 3
Source: https://oj.leetcode.com/problems/letter-combinations-of-a-phone-number/
Notes:
Given a digit string, return all possible letter combinations that the number could represent.
A mapping of digit to letters (just like on the telephone buttons) is given below.
Input:Digit string "23"
Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
Note:
Although the above answer is in lexicographical order, your answer could be in any order you want.
Solution: Depth-first Search.
*/
#ifndef LETTERCOMBINATIONSOFAPHONENUMBER_H_
#define LETTERCOMBINATIONSOFAPHONENUMBER_H_
#include <vector>
using std::vector;
#include <string>
using std::string;
class Solution {
public:
vector<string> letterCombinations(string digits) {
const vector<string> mapping = {"abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
string letters;
vector<string> combinations;
letterCombinations(mapping, digits, letters, combinations);
return combinations;
}
void letterCombinations(const vector<string> &mapping, const string &digits,
string &letters, vector<string> &combinations) {
int depth = letters.size();
if (depth == digits.size()) {
combinations.push_back(letters);
return;
}
int d = digits[depth] - '2';
for (auto c : mapping.at(d)) {
letters.push_back(c);
letterCombinations(mapping, digits, letters, combinations);
letters.pop_back();
}
}
};
#endif /* LETTERCOMBINATIONSOFAPHONENUMBER_H_ */