码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode - Letter Combination Of A Phone Number

时间:2017-08-28 00:45:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:com   list   for   def   har   不同   one   upload   题目   

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.

技术分享Input:Digit string "23"

Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

1.看到这个题目,我们第一部想到的就是要按照数字存储相对应的字母。这样的话,显然array是一个比较好的选择。根据测试, 数字1和0都是对应空 “”。
2.因为是不同的组合,所以我们要从不同数字的对应字母里分别找出一个字母进行组合,这个就和leetcode里combination的题目很相似,应该用recursion来解
解题思路如下:
比如说我们输入23:
那么按照我们的习惯, 我们从2中的abc选一个a 再到3中的def选一个d 好,完成ab,放入list里面, 返回
再到3中的def选一个e 好,完成ae,放入list里面 ,返回
                      再到3............f ...... af............ 返回,好了def里面我们已经结束了,返回到上一层的abc
我们从2中的abc选一个b
...............d .......de............. 返回
                      ..............以此类推..................
           一直到我们遍历完abc
每当我们完成一个和数字组合相同的字符串 我们都存入list 并且return 并且返回到上层继续加入下一个属于同数字的字母
从上述我们可以看出recursion的逻辑
 1     public List<String> letterCombinations(String digits) {
 2         String[] letters = new String[]{"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
 3         List<String> result = new ArrayList<>();
 4         if (digits.length() == 0) {
 5             return result;
 6         }
 7         formCombination(result, "", letters, 0, digits);
 8         return result;
 9     }
10     void formCombination(List<String> result, String current, String[]letters, int index, String digits) {
11         if (index >= digits.length() && current.length() == digits.length()) {
12             result.add(current);
13             return;
14         }
15         int digit = Integer.parseInt(digits.substring(index, index + 1));
16         char[] arr = letters[digit].toCharArray();
17         for (int j = 0; j < arr.length; j++) {
18             formCombination(result, current + arr[j], letters, index + 1, digits);
19         }
20     }

 









Leetcode - Letter Combination Of A Phone Number

标签:com   list   for   def   har   不同   one   upload   题目   

原文地址:http://www.cnblogs.com/shuaih/p/7440268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!