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", "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.

翻译:

给一个数字的字符串,输出对应键盘上的所有字符的组合。

思路:

对于数字的字符串23来说,可以先生成一个List<String> result =new ArrayList<>()保存结果。

(Java中List<String> result =new ArrayList<>();List<String> result =new ArrayList<>();List是集合最大的父类,它包含了ArrayList。 如果直接声明为ArrayList<String> list=new ArrayList<String>()这个也没有问题。 而声明成:List<String> list=new ArrayList<String>();这样的形式使得list这个对象可以有多种的存在形式,比如要用链表存数据的话直接用LinkedList,使用ArrayList或者Vector直接通过list去=就可以了,这样让list这个对象活起来了)

对字符串的每个数字进行遍历,首先为2,则把‘2‘-’0‘对应的字符分别加入到res临时List中,此时res为{’a‘,‘b‘,‘c‘};

令result = res; 字符串此时指向3,这是把’3‘-’0‘对应的每个字符,分别加入到result目前已有的字符的后面。

即一个双重循环遍历。

代码


	public static List<String> letterCombinations(String digits) {
        List<String> result =new ArrayList<>();
        if(digits == null || digits.isEmpty())
        	return result;
        result.add("");
        String []btns = {"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
        for(int i =0 ; i < digits.length() ;i++)
        {
        	List<String> res = new ArrayList<>();
        	String letter = btns[digits.charAt(i)-'0'];
        	for(int j = 0 ; j < result.size();j++)//遍历上一个列表,取出每一个元素,并和新的元素的每一个字符加起来保存
        	{
        		for(int k = 0; k< letter.length(); k++)//遍历当前数字对应的所有字符
        		{
        			res.add(result.get(j)+letter.charAt(k));
        		}
        	}
        	result = res;
        }

        return result;
    }
时间: 2024-10-22 09:30:56

LeetCode 17 Letter Combinations of a Phone Number 数字转为字母组合的相关文章

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 (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

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(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