鱼C论坛

 找回密码
 立即注册
查看: 1345|回复: 0

[技术交流] C++刷leetcode(17. 电话号码的字母组合)【回溯】

[复制链接]
发表于 2020-4-28 12:37:02 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目描述:
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。

给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。



示例:

输入:"23"
输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。


void dfs(string digits, map<char, string> store, int cur, vector<string>&res, string temp){
        if(temp.size() > digits.size())return;
        if(temp.size() == digits.size()) {
            res.push_back(temp);
            return;
        }
    
        for(int i = 0; i < store[digits[cur]].size(); i++){
            temp += store[digits[cur]][i];
            dfs(digits, store, cur+1, res, temp); 
            temp.erase(temp.end()-1);
        }
    }
    vector<string> letterCombinations(string digits) {
        map<char, string> store = {
            {'2', "abc"}, {'3', "def"}, {'4', "ghi"}, {'5', "jkl"}, {'6', "mno"},
            {'7', "pqrs"}, {'8', "tuv"}, {'9', "wxyz"}
        };
        
        vector<string> res;
        if(digits.size()==0) return res;
        dfs(digits, store, 0, res, "");
        return res;

    }

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 18:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表