码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode || 递归 / 回溯

时间:2019-01-25 23:21:26      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:its   put   分享   tor   span   div   number   void   16px   

呜呜呜 递归好不想写qwq

17. Letter Combinations of a Phone Number

题意:在九宫格上按数字,输出所有可能的字母组合

Input: "23"
Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

思路:递归回溯求解

递归保存的是每层的状态,因此每层的 str 不应该改,而是更改str和idx后进入到下一层

技术分享图片
class Solution {
public:
    vector<string> letterCombinations(string digits) {
        int n = digits.length();
        if (n == 0) return {};
        vector<string> ans;
        string dict[] = {"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
        dfs("", 0, dict, n, digits, ans);
        return ans;
    }
    void dfs(string str, int idx, string dict[], int n, string digits, vector<string> &ans) {
        if (idx == n) {
            ans.push_back(str);
            return;
        }
        if (digits[idx] <= 1 || digits[idx] > 9) return;
        for (int i = 0; i < dict[digits[idx] - 0].length(); i++) {
            //str += dict[digits[idx] - ‘0‘][i];
            dfs(str + dict[digits[idx] - 0][i], idx + 1, dict, n, digits, ans);
        }
    }
};
View Code

 

LeetCode || 递归 / 回溯

标签:its   put   分享   tor   span   div   number   void   16px   

原文地址:https://www.cnblogs.com/pinkglightning/p/10322241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!