17. 电话号码的字母组合

Posted acbingo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了17. 电话号码的字母组合相关的知识,希望对你有一定的参考价值。

17. 电话号码的字母组合

暴力即可,深搜 or 迭代

class Solution {

    Map<Character, String[]> map = new HashMap<Character, String[]>();

    public List<String> letterCombinations(String digits) {
        if (null == digits || digits.length() == 0) return new LinkedList<>();

        map.put(‘2‘, new String[]{"a", "b", "c"});
        map.put(‘3‘, new String[]{"d", "e", "f"});
        map.put(‘4‘, new String[]{"g", "h", "i"});
        map.put(‘5‘, new String[]{"j", "k", "l"});
        map.put(‘6‘, new String[]{"m", "n", "o"});
        map.put(‘7‘, new String[]{"p", "q", "r", "s"});
        map.put(‘8‘, new String[]{"t", "u", "v"});
        map.put(‘9‘, new String[]{"w", "x", "y", "z"});

        List<String> ans = new ArrayList<>();
        ans.add("");
        ans = dfs(ans, digits);
        ans.remove("");
        return ans;

    }

    public List<String> dfs(List<String> list, String digits) {
        if (digits.length() == 0) return list;
        char ch = digits.charAt(0);

        List<String> newList = new ArrayList<>();

        String[] strings = map.get(ch);
        for (String c : strings) {
            for (String s : list) {
                newList.add(s + c);
            }

        }

        return dfs(newList, digits.substring(1));
    }
}

以上是关于17. 电话号码的字母组合的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-----17. 电话号码的字母组合

LeetCode 17电话号码的字母组合

[回溯算法]leetcode17. 电话号码的字母组合(c实现)

17. 电话号码的字母组合

17. 电话号码的字母组合

Leecode17. 电话号码的字母组合——Leecode大厂热题100道系列