17. 电话号码的字母组合

17. 电话号码的字母组合

题目描述

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

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

image

示例:

输入:"23"
输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。

思路

回溯算法

实现

class Solution {
    public List<String> letterCombinations(String digits) {
        if(digits.equals("")) {
            return new ArrayList<>();
        }
        
        Map<Character, String> dict = new HashMap<>();
        completeDict(dict);
        
        List<String> res = new ArrayList<>();
        res.add("");
        
        for(int i=0; i<digits.length(); i++) {
            int sz = res.size();
            String nums = dict.get(digits.charAt(i));
            
            for(int j=0; j<sz; j++) {
                String s = res.get(0);
                res.remove(0);
                
                for(int k=0; k<nums.length(); k++) {
                    String sub = s + nums.charAt(k);
                    res.add(sub);
                }
            }
        }

        return res;
    }
    
    public void completeDict(Map<Character, String> dict) {
        dict.put('2', "abc");
        dict.put('3', "def");
        dict.put('4', "ghi");
        dict.put('5', "jkl");
        dict.put('6', "mno");
        dict.put('7', "pqrs");
        dict.put('8', "tuv");
        dict.put('9', "wxyz");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值