1.题目描述
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 below. Note that 1 does not map to any letters.
给定一个仅包含数字 2-9
的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。
Example:
Input: “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.
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。
2.Solutions
使用FIFO队列解决:
1 | public static List<String> letterCombinations(String digits) { |
这是一个迭代的解决方案。 对于添加的每个数字,删除并复制队列中的每个元素,并将可能的字母添加到每个元素,然后再将更新的元素添加回队列。 重复此过程,直到迭代所有数字。
但是没有回溯(BFS或者DFS)版本。