LeetCode17:Letter Combinations of a Phone Number

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”].
Note:
Although the above answer is in lexicographical order, your answer could be in any order you want.

这明显的一道回溯法的题。使用深度优先遍历每一个数字可能相应的字符,每遍历完一个字符回溯回下一个字符。

使用一个字符串记录可能的路径,找到递归退出的条件是遍历完字符串。

唯一要注意的一点是数字到字符之间的映射使用map< int ,string >能够实现,可是直接使用string[]也能够实现。


runtime:0ms

class Solution {
public:
    vector<string> letterCombinations(string digits) {
        vector<string> result;
        if(digits.size()==0)    
            return result;
        string nums[]={" ","00","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"};
        string path;
        helper(digits,0,path,result,nums);
        return result;

    }

    void helper(string digits,int pos,string &path,vector<string> &result,string * nums)
    {
        if(pos==digits.size())
        {
            result.push_back(path);
            return ;
        }
        string tmp=nums[digits[pos]-'0'];
        for(int i=0;i<tmp.size();i++)
        {
            path=path+tmp[i];
            helper(digits,pos+1,path,result,nums);
            path=path.substr(0,path.size()-1);
        }
    }
};

转载于:https://www.cnblogs.com/ljbguanli/p/7257015.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值