给定一个仅包含数字 2-9
的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。
示例:
输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。
回溯是一种通过穷举所有可能情况来找到所有解的算法。如果一个候选解最后被发现并不是可行解,回溯算法会舍弃它,并在前面的一些步骤做出一些修改,并重新尝试找到可行解。
给出如下回溯函数 backtrack(combination, next_digits)
,它将一个目前已经产生的组合 combination
和接下来准备要输入的数字 next_digits
作为参数。
如果没有更多的数字需要被输入,那意味着当前的组合已经产生好了。
如果还有数字需要被输入:
遍历下一个数字所对应的所有映射的字母。
将当前的字母添加到组合最后,也就是 combination = combination + letter 。
重复这个过程,输入剩下的数字: backtrack(combination + letter, next_digits[1:])
。
class Solution {
Map<String, String> phone = new HashMap<String, String>() {{
put("2", "abc");
put("3", "def");
put("4", "ghi");
put("5", "jkl");
put("6", "mno");
put("7", "pqrs");
put("8", "tuv");
put("9", "wxyz");
}};
List<String> output = new ArrayList<String>();
public void backtrack(String combination, String next_digits) {
// if there is no more digits to check
if (next_digits.length() == 0) {
// the combination is done
output.add(combination);
}
// if there are still digits to check
else {
// iterate over all letters which map
// the next available digit
String digit = next_digits.substring(0, 1);
String letters = phone.get(digit);
for (int i = 0; i < letters.length(); i++) {
String letter = phone.get(digit).substring(i, i + 1);
// append the current letter to the combination
// and proceed to the next digits
backtrack(combination + letter, next_digits.substring(1));
}
}
}
public List<String> letterCombinations(String digits) {
if (digits.length() != 0)
backtrack("", digits);
return output;
}
}
class Solution:
def letterCombinations(self, digits):
"""
:type digits: str
:rtype: List[str]
"""
phone = {‘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‘],
‘9‘: [‘w‘, ‘x‘, ‘y‘, ‘z‘]}
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">backtrack</span><span class="hljs-params">(combination, next_digits)</span>:</span>
<span class="hljs-comment"># if there is no more digits to check</span>
<span class="hljs-keyword">if</span> len(next_digits) == <span class="hljs-number">0</span>:
<span class="hljs-comment"># the combination is done</span>
output.append(combination)
<span class="hljs-comment"># if there are still digits to check</span>
<span class="hljs-keyword">else</span>:
<span class="hljs-comment"># iterate over all letters which map </span>
<span class="hljs-comment"># the next available digit</span>
<span class="hljs-keyword">for</span> letter <span class="hljs-keyword">in</span> phone[next_digits[<span class="hljs-number">0</span>]]:
<span class="hljs-comment"># append the current letter to the combination</span>
<span class="hljs-comment"># and proceed to the next digits</span>
backtrack(combination + letter, next_digits[<span class="hljs-number">1</span>:])
output = []
<span class="hljs-keyword">if</span> digits:
backtrack(<span class="hljs-string">""</span>, digits)
<span class="hljs-keyword">return</span> output
复杂度分析
时间复杂度: ,其中 N 是输入数字中对应 3 个字母的数目(比方说 2,3,4,5,6,8), M 是输入数字中对应 4 个字母的数目(比方说 7,9),N+M 是输入数字的总数。
空间复杂度: ,这是因为需要保存 个结果。
原文:https://www.cnblogs.com/leetcodetijie/p/13073957.html