【LeetCode】17. Letter Combinations of a Phone Number(Python3)

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值