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

LeetCode Solution:Letter Combinations of a Phone Number

时间:2014-09-30 19:28:09      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   for   

Letter Combinations of a Phone Number

 Total Accepted: 17652 Total Submissions: 66854My Submissions

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.

bubuko.com,布布扣

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


public class Solution {
    public List<String> letterCombinations(String digits) {
     List<String> result = new ArrayList<String>();
     if (digits == null) {
         return result;
     }

     List<String> findSet = inSet(digits);
     helper(findSet, new String(), 0, result);
     return result;
    }
   List<String> inSet(String digits) {
            String[] keyboard ={" ","","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"};
            List<String> findSet = new ArrayList<String>();
            for (int i = 0; i < digits.length(); i++) {
                findSet.add(keyboard[digits.charAt(i) - '0']);
            }
            return findSet;
            
   }

    void helper(List<String> findSet, 
                String level, 
                int levelNum,
                List<String> result) {
        if (level.length() == findSet.size()) {
            result.add(level);
            return;
        }
        for (int i = 0; i < findSet.get(levelNum).length(); i++ ) {
              helper(findSet,level + findSet.get(levelNum).charAt(i)
                     , levelNum + 1, result);
        }
    }
}

做到100题了,Mark一下!



LeetCode Solution:Letter Combinations of a Phone Number

标签:style   blog   http   color   io   os   ar   java   for   

原文地址:http://blog.csdn.net/aresgod/article/details/39698139

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