回溯法 17. Letter Combinations of a Phone Number

Posted buddho

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回溯法 17. Letter Combinations of a Phone Number相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    map<char,string> dict;

    vector<string> letterCombinations(string digits) {        
dict[
2] = "abc"; dict[3] = "def"; dict[4] = "ghi"; dict[5] = "jkl"; dict[6] = "mno"; dict[7] = "pqrs"; dict[8] = "tuv"; dict[9] = "wxyz"; vector<string> ans; helper(digits, digits.size(), ans); return ans; } // 先把前n-1个实现,然后在前面的结果中追加第n个数字对应的字母,就是最终的结果。 void helper(string &digits, int n, vector<string>& ans) { if(n == 0) return;
     //第n个数
char num = digits[n-1]; if(n == 1) { for(auto c:dict[num])//对每个字母 ans.push_back(string(1,c)); return; } //先获得前n-1个数字组成的字符串数组
        vector<string> a;
     helper(digits, n-1, a);
        
        for(auto c: dict[num])// 把第n-1个数字,追加到每一个
        {
            for(auto str: a)
            {
                str.push_back(c);
                ans.push_back(str);
            }
        }
    }
};

回溯就是递归。把大问题分解成小问题?不知道是怎么描述这个思想。

 

以上是关于回溯法 17. Letter Combinations of a Phone Number的主要内容,如果未能解决你的问题,请参考以下文章

leetcode17. Letter Combinations of a Phone Number

17图的搜索算法之回溯法

17. Letter Combinations of a Phone Number

17. 电话号码的字母组合(递归+回溯)

17. 电话号码的字母组合(递归+回溯)

LeetCode回溯系列——第17题解法