Skip to content

Latest commit

 

History

History
91 lines (64 loc) · 1.75 KB

17_电话号码的字母组合.md

File metadata and controls

91 lines (64 loc) · 1.75 KB

题目

17. 电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。

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

img

示例 1:

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

示例 2:

输入:digits = ""
输出:[]

示例 3:

输入:digits = "2"
输出:["a","b","c"]

提示:

  • 0 <= digits.length <= 4
  • digits[i] 是范围 ['2', '9'] 的一个数字。

代码

class Solution {

    String[] strs = new String[]{
        "",
        "",
        "abc",
        "def",
        "ghi",
        "jkl",
        "mno",
        "pqrs",
        "tuv",
        "wxyz"
    };
    
    List<String> res = new ArrayList<String>();
    StringBuilder path= new StringBuilder("");
    public List<String> letterCombinations(String digits) {
        if(digits.equals("")) return res;
        char[]d= digits.toCharArray();
        traverse(d,0);
        return res;
    }

    private void traverse(char[]d,int idx){
        if(idx>=d.length){
            res.add(path.toString());
            return;
        }
        String cur = strs[d[idx]-'0'];
        for(int i=0;i<cur.length();i++){
            path.append(String.valueOf(cur.charAt(i)));
            traverse(d,idx+1);
            path.deleteCharAt(path.length()-1);
        }
    }
    
}

思路

通过电话号码的下标全排列即可

通过前两个 strs 空字符串, 直接通过 数字映射字符串即可。

接着回溯即可.