17. *的字母组合

class Solution(object): #回溯法
    def letterCombinations(self, digits):
        """
        :type digits: str
        :rtype: List[str]
        """
        if not digits:
            return []
        dic = {'2':'abc','3':'def','4':'ghi','5':'jkl','6':'mno','7':'pqrs','8':'tuv','9':'wxyz'}
        temp = []
        for i in digits:
            if i in dic:
                temp.append(dic[i])
        result = []
        def dfs(s,temp):
            if not temp:
                result.append(s)
                return
            for i in temp[0]:
                dfs(s+i,temp[1:]) 
        dfs('',temp)
        return result

  

原文地址:https://www.cnblogs.com/USTC-ZCC/p/12710984.html