-
Notifications
You must be signed in to change notification settings - Fork 0
/
LetterCombinationOfPhoneNumber.java
37 lines (34 loc) · 1.1 KB
/
LetterCombinationOfPhoneNumber.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import java.util.ArrayList;
public class Solution {
static final char[][] letterTable = {
{' '},
{'1'},
{'a', 'b', 'c'},
{'d', 'e', 'f'},
{'g', 'h', 'i'},
{'j', 'k', 'l'},
{'m', 'n', 'o'},
{'p', 'q', 'r', 's'},
{'t', 'u', 'v'},
{'w', 'x', 'y', 'z'}
};
public ArrayList<String> letterCombinations(String digits) {
ArrayList<String> results = new ArrayList<String>();
if (digits == null)
return results;
char[] picked = new char[digits.length()];
letterCombinations(digits, 0, picked, results);
return results;
}
private void letterCombinations(String digits, int index, char[] picked, ArrayList<String> results) {
if (index >= digits.length()) {
results.add(new String(picked));
return;
}
int c = digits.charAt(index) - '0';
for (int i = 0; i < letterTable[c].length; i++) {
picked[index] = letterTable[c][i];
letterCombinations(digits, index + 1, picked, results);
}
}
}