Problem
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.

Algorithmic thinking
方法1:回溯
回溯 是一种通过探索所有潜在候选者来查找所有解决方案的算法。如果解决方案候选者变为不是解决方案(或者至少不是最后一个解决方案),则回溯算法通过在前一步骤上进行一些更改(即 回溯然后再次尝试)来丢弃它。
这是一个回溯函数backtrack(combination, next_digits) ,它将正在进行的字母组合和下一个要检查的数字作为参数。
- 如果没有更多数字要检查,则表示当前组合已完成。
- 如果还有要检查的数字:
迭代映射下一个可用数字的字母。
将当前字母附加到当前组合 combination = combination + letter。
继续检查下一个数字: backtrack(combination + letter, next_digits[1:])。
Python3 solution
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']}
def backtrack(combination, next_digits):
# if there is no more digits to check
if len(next_digits) == 0:
# the combination is done
output.append(combination)
# if there are still digits to check
else:
# iterate over all letters which map
# the next available digit
for letter in phone[next_digits[0]]:
# append the current letter to the combination
# and proceed to the next digits
backtrack(combination + letter, next_digits[1:])
output = []
if digits:
backtrack("", digits)
return output

876

被折叠的 条评论
为什么被折叠?



