前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【leetcode】Letter Combinations of a Phone Number

【leetcode】Letter Combinations of a Phone Number

作者头像
阳光岛主
发布2019-02-19 11:31:42
4640
发布2019-02-19 11:31:42
举报
文章被收录于专栏:米扑专栏米扑专栏

Question : 

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.

代码语言:javascript
复制
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.

Anwser 1 :

代码语言:javascript
复制
int counts[] = {0, 0, 3, 3, 3, 3, 3, 4, 3, 4};
char letter[] = {'0', '0', 'a', 'd', 'g', 'j', 'm', 'p', 't', 'w'};
        
class Solution {
public:
    void comb(vector<string> &result, string &str, string &digits, int pos, int size) {
        if (pos == size)
        {
            result.push_back(str);      // save results
            return;
        }
        
        int j = digits[pos]-'0';
        for (int i = 0; i < counts[j]; ++i)
        {
            str[pos] = letter[j] + i;
            comb(result, str, digits, pos+1, size);
        }
    }
    
    vector<string> letterCombinations(string digits) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        int nSize = digits.size();
        string str(nSize, ' ');
        vector<string> result;
        
        comb(result, str, digits, 0, nSize);
        return result;
    }
};

Anwser 2 :

代码语言:javascript
复制
class Solution {
public:
    vector<string> letterCombinations(string digits) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        vector<string> result;
        
        getRet(digits, "", 0, result);
        return result;
    }
    
    void getRet(string digits, string s, int pos, vector<string>  &result) {
        const static string dic[10]={ "0","1","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"};
        int size = digits.size();
        
        if(pos == size) {
            result.push_back(s);    // save result
        }
        
        int num = digits[pos] - '0';
        for( int i=0; i<dic[num].size(); i++)   // assemble letters
        {
            string tmp = s;
            tmp += dic[num][i];
            getRet(digits, tmp, pos+1, result);
        }
    }
};

参考推荐:

Letter Combinations of a Phone Number

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2013年05月01日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档