LeetCode(17):电话号码的字母组合

Medium!

题目描述:

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

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

示例:

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

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

解题思路:

这道题让我们求电话号码的字母组合,即数字2到9中每个数字可以代表若干个字母,然后给一串数字,求出所有可能的组合。

我们用递归Recursion来解,要建立一个字典,用来保存每个数字所代表的字符串,然后还需要一个变量level,记录当前生成的字符串的字符个数。

C++参考答案一:

 1 // Recursion
 2 class Solution {
 3 public:
 4     vector<string> letterCombinations(string digits) {
 5         vector<string> res;
 6         if (digits.empty()) return res;
 7         string dict[] = {"abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};//建立一个字典,用来保存每个数字所代表的字符串
 8         letterCombinationsDFS(digits, dict, 0, "", res);
 9         return res;
10     }
11     void letterCombinationsDFS(string digits, string dict[], int level, string out, vector<string> &res) {
12         if (level == digits.size()) res.push_back(out);
13         else {
14             string str = dict[digits[level] - ‘2‘];
15             for (int i = 0; i < str.size(); ++i) {
16                 out.push_back(str[i]);
17                 letterCombinationsDFS(digits, dict, level + 1, out, res);
18                 out.pop_back();
19             }
20         }
21     }
22 };

这道题我们也可以用迭代Iterative来解.

C++参考答案二:

 1 // Iterative
 2 class Solution {
 3 public:
 4     vector<string> letterCombinations(string digits) {
 5         vector<string> res;
 6         if (digits.empty()) return res;
 7         string dict[] = {"abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
 8         res.push_back("");
 9         for (int i = 0; i < digits.size(); ++i) {
10             int n = res.size();
11             string str = dict[digits[i] - ‘2‘];
12             for (int j = 0; j < n; ++j) {
13                 string tmp = res.front();
14                 res.erase(res.begin());
15                 for (int k = 0; k < str.size(); ++k) {
16                     res.push_back(tmp + str[k]);
17                 }
18             }
19         }
20         return res;
21     }
22 };

原文地址:https://www.cnblogs.com/ariel-dreamland/p/9128215.html

时间: 2024-10-06 23:07:19

LeetCode(17):电话号码的字母组合的相关文章

[LeetCode] 17. 电话号码的字母组合(回溯)

题目 给定一个仅包含数字?2-9?的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明: 尽管上面的答案

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

中等题,还可以,可完成. class Solution: def letterCombinations(self, digits: str) -> List[str]: if digits=='': return '' memo={'2':['a','b','c'], '3':['d','e','f'], '4':['g','h','i'], '5':['j','k','l'], '6':['m','n','o'], '7':['p','q','r','s'], '8':['t','u','v'

Leetcode之回溯法专题-17. 电话号码的字母组合(Letter Combinations of a Phone Number)

[Leetcode]17. 电话号码的字母组合(Letter Combinations of a Phone Number) 题目描述: 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf&qu

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<

leetcode 17 电话号码的数字组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合.给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 1 class Solution { 2 List<String> temp=new ArrayList<String>(); 3 Map<String,String> map=new HashMap<String,String>(){{ 4 put("2","abc"); 5 pu

leecode 17. 电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明:尽管上面的答案是按字典

leetcode(9)-电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 链接:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/ 没什么好说的,就是测试的时候别手贱多打几个数字,卡的电脑动不了 class Solution: def letterCombinations(self, digits: str): if len(digits)

LeetCode 第17题电话号码的字母组合

/*17. 电话号码的字母组合 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明:

[LeetCode] 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