题目描述(中等难度)

17. Letter Combinations of a Phone Number - 图1

给一串数字,每个数可以代表数字键下的几个字母,返回这些数字下的字母的所有组成可能。

解法一 定义相乘

自己想了用迭代,用递归,都理不清楚,灵机一动,想出了这个算法。

把字符串 “23” 看成 [“a”,”b”,c] * [“d”,”e”,”f”] ,而相乘就用两个 for 循环实现即可,看代码应该就明白了。

  1. public List<String> letterCombinations(String digits) {
  2. List<String> ans = new ArrayList<String>();
  3. for (int i = 0; i < digits.length(); i++) {
  4. ans = mul(ans, getList(digits.charAt(i) - '0'));
  5. }
  6. return ans;
  7. }
  8. public List<String> getList(int digit) {
  9. String digitLetter[] = { "", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz" };
  10. List<String> ans = new ArrayList<String>();
  11. for (int i = 0; i < digitLetter[digit].length(); i++) {
  12. ans.add(digitLetter[digit].charAt(i) + "");
  13. }
  14. return ans;
  15. }
  16. //定义成两个 List 相乘
  17. public List<String> mul(List<String> l1, List<String> l2) {
  18. if (l1.size() != 0 && l2.size() == 0) {
  19. return l1;
  20. }
  21. if (l1.size() == 0 && l2.size() != 0) {
  22. return l2;
  23. }
  24. List<String> ans = new ArrayList<String>();
  25. for (int i = 0; i < l1.size(); i++)
  26. for (int j = 0; j < l2.size(); j++) {
  27. ans.add(l1.get(i) + l2.get(j));
  28. }
  29. return ans;
  30. }

解法二 队列迭代

参考这里,果然有人用迭代写了出来。主要用到了队列。

  1. public List<String> letterCombinations(String digits) {
  2. LinkedList<String> ans = new LinkedList<String>();
  3. if(digits.isEmpty()) return ans;
  4. String[] mapping = new String[] {"0", "1", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
  5. ans.add("");
  6. for(int i =0; i<digits.length();i++){
  7. int x = Character.getNumericValue(digits.charAt(i));
  8. while(ans.peek().length()==i){ //查看队首元素
  9. String t = ans.remove(); //队首元素出队
  10. for(char s : mapping[x].toCharArray())
  11. ans.add(t+s);
  12. }
  13. }
  14. return ans;
  15. }

假如是 “23” ,那么

第 1 次 for 循环结束后变为 a, b, c;

第 2 次 for 循环的第 1 次 while 循环 a 出队,分别加上 d e f 然后入队,就变成 b c ad ae af

第 2 次 for 循环的第 2 次 while 循环 b 出队,分别加上 d e f 然后入队,就变成 c ad ae af bd be bf

第 2 次 for 循环的第 3 次 while 循环 c 出队,分别加上 d e f 然后入队,就变成 ad ae af bd be bf cd ce cf

这样的话队列的元素长度再也没有等于 1 的了就出了 while 循环。

解法三 递归

参考这里

  1. private static final String[] KEYS = { "", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz" };
  2. public List<String> letterCombinations(String digits) {
  3. if(digits.equals("")) {
  4. return new ArrayList<String>();
  5. }
  6. List<String> ret = new LinkedList<String>();
  7. combination("", digits, 0, ret);
  8. return ret;
  9. }
  10. private void combination(String prefix, String digits, int offset, List<String> ret) {
  11. //offset 代表在加哪个数字
  12. if (offset == digits.length()) {
  13. ret.add(prefix);
  14. return;
  15. }
  16. String letters = KEYS[(digits.charAt(offset) - '0')];
  17. for (int i = 0; i < letters.length(); i++) {
  18. combination(prefix + letters.charAt(i), digits, offset + 1, ret);
  19. }
  20. }

17. Letter Combinations of a Phone Number - 图2

从 a 开始 ,然后递归到 d ,然后 g ,就把 adg 加入,然后再加入 adh,再加入 adi … 从左到右,递归到底之后就将其加入。

这种题的时间复杂度和空间复杂度自己理的不太清楚就没有写了。

windliang wechat

添加好友一起进步~

如果觉得有帮助的话,可以点击 这里 给一个 star 哦 ^^

如果想系统的学习数据结构和算法,强烈推荐一个我之前学过的课程,可以点击 这里 查看详情