跳到主要内容

Letter Combinations of a Phone Number

描述

Given a digit string, 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.

Phone Keyboard

**Input:**Digit string "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.

分析

递归

# Letter Combinations of a Phone Number
# 时间复杂度O(3^n),空间复杂度O(n)
class Solution:
keyboard = [" ", "", "abc", "def", # '0','1','2',...
"ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"]

def letterCombinations(self, digits: str) -> List[str]:
result = []
if not digits:
return result
self.dfs(digits, 0, "", result)
return result

def dfs(self, digits: str, cur: int, path: str, result: List[str]) -> None:
if cur == len(digits):
result.append(path)
return

for c in self.keyboard[int(digits[cur])]:
self.dfs(digits, cur + 1, path + c, result)

迭代

// Letter Combinations of a Phone Number
// 时间复杂度O(3^n),空间复杂度O(1)
public class Solution {
private static final String[] keyboard =
new String[]{ " ", "", "abc", "def", // '0','1','2',...
"ghi", "jkl", "mno", "pqrs", "tuv", "wxyz" };

public List<String> letterCombinations(String digits) {
if (digits.isEmpty()) return new ArrayList<>();
List<String> result = new ArrayList<>();
result.add("");
for (char d : digits.toCharArray()) {
final int n = result.size();
final int m = keyboard[d - '0'].length();

// resize to n * m
for (int i = 1; i < m; ++i) {
for (int j = 0; j < n; ++j) {
result.add(result.get(j));
}
}

for (int i = 0; i < result.size(); ++i) {
result.set(i, result.get(i) + keyboard[d - '0'].charAt(i/n));
}
}
return result;
}
}