LeetCode #17 Letter Combinations of a Phone Number (M)

[Problem]

Given a digit string, return all possible letter combinations that the number could represent.

A mapping of digit to letters (just like on the telephone buttons) is given below.

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

Note:
Although the above answer is in lexicographical order, your answer could be in any order you want.

[Analysis]

典型的backtracking排列组合的问题,没有tricky的地方。用Iteration或Recursion都可以轻易写出。

[Solution]

import java.util.ArrayList;
import java.util.List;

public class Solution {
    public List<String> letterCombinations(String digits) {
        if (digits == null) {
            return null;
        }

        List<String> result = new ArrayList<String>();
        StringBuilder buf = new StringBuilder();
        getLetterCombinations(digits, 0, buf, result);

        return result;
    }

    public void getLetterCombinations(String digits, int idx, StringBuilder buf, List<String> result) {
        if (idx >= digits.length()) {
            result.add(buf.toString());
        } else {
            String mappings = getMapping(digits.charAt(idx));
            for (int i = 0; i < mappings.length(); i++) {
                StringBuilder newBuf = new StringBuilder(buf);
                getLetterCombinations(digits, idx + 1, newBuf.append(mappings.charAt(i)), result);
            }
        }
    }

    public String getMapping(char digit) {
        switch (digit) {
            case ‘2‘: return "abc";
            case ‘3‘: return "def";
            case ‘4‘: return "ghi";
            case ‘5‘: return "jkl";
            case ‘6‘: return "mno";
            case ‘7‘: return "pqrs";
            case ‘8‘: return "tuv";
            case ‘9‘: return "wxyz";
            default: return "";
        }
    }
}
时间: 2024-10-22 09:30:59

LeetCode #17 Letter Combinations of a Phone Number (M)的相关文章

leetCode 17. Letter Combinations of a Phone Number 字符串 | 回溯 | Medium

17. Letter Combinations of a Phone Number Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23"Ou

Leetcode 17. Letter Combinations of a Phone Number(水)

17. Letter Combinations of a Phone Number Medium Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given

Leetcode 17 Letter Combinations of a Phone Number - DFS思想

Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae", &q

LeetCode 17 Letter Combinations of a Phone Number(电话号码的字母组合)

翻译 给定一个数字字符串,返回所有这些数字可以表示的字母组合. 一个数字到字母的映射(就像电话按钮)如下图所示. 输入:数字字符串"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"] 备注:尽管以上答案是无序的,如果你想的话你的答案可以是

LeetCode 17 Letter Combinations of a Phone Number 数字转为字母组合

题目: Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae"

LeetCode 17 Letter Combinations of a Phone Number(C,C++,Java,Python)

Problem: Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae&

Leetcode 17.——Letter Combinations of a Phone Number

Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae", &q

LeetCode 17 Letter Combinations of a Phone Number (电话号码字符组合)

题目链接 https://leetcode.com/problems/letter-combinations-of-a-phone-number/?tab=Description HashMap<Character, String> map = new HashMap<>(); map.put('0', "0"); map.put('1', "1"); map.put('2', "abc"); map.put('3', &

leetcode 17 Letter Combinations of a Phone Number

class Solution { public: vector<string> letterCombinations(string digits) { vector<string> res; if (digits.empty()) return res; string dict[] = {"abc", "def", "ghi", "jkl", "mno", "pqrs&qu