您的位置:首页 > 其它

[LeetCode] Letter Combinations of a Phone Number

2015-06-16 23:57 393 查看
Well, a typical backtracking problem. Make sure you are clear with the following three problems:

What is a partial solution and when is it finished? --- In this problem, the partial solution is a combination and it is finished once it is of the same length as digits.

How to find all the partial solutions? --- In the following code, I use a nested for-loop to traverse all the possible starting elements for each digit.

When to make recursive calls? --- In the following code, once an element is added to the partial solution, we call the function to generate the remaining elements recursively.

Of course, remember to recover to the previous status once a partial solution is done. In the following code, line 18 (comb.resize(comb.length() - 1)) is for this purpose.

The following should be self-explanatory :)

class Solution {
public:
vector<string> letterCombinations(string digits) {
string mp[] = {" ", " ", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
vector<string> res;
if (digits.empty()) return res;
string comb;
combinations(digits, 0, mp, comb, res);
return res;
}
private:
void combinations(string& digits, int start, string mp[], string& comb, vector<string>& res) {
if (comb.length() == digits.length()) {
res.push_back(comb);
return;
}
for (int i = 0; i < (int)mp[digits[start] - '0'].length(); i++) {
comb += (mp[digits[start] - '0'][i]);
combinations(digits, start + 1, mp, comb, res);
comb.resize(comb.length() - 1);
}
}
};


Well, the above recursive backtracking solution is a typical solution. In fact, this problem can also be solved iteratively. Refer to this link for more information. I have rewritten the code below for your reference.

class Solution {
public:
vector<string> letterCombinations(string digits) {
vector<string> res;
if (digits.empty()) return res;
string mp[] = {" ", " ", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
res.push_back("");
for (int i = 0; i < (int)digits.length(); i++) {
string letters = mp[digits[i] - '0'];
vector<string> temp;
for (int j = 0; j < (int)letters.length(); j++)
for (int k = 0; k < (int)res.size(); k++)
temp.push_back(res[k] + letters[j]);
swap(res, temp);
}
return res;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: