首页 > 其他 > 详细

LeetCode 17. Letter Combinations of a Phone Number

时间:2018-08-10 00:20:40      阅读:156      评论:0      收藏:0      [点我收藏+]

深搜。

void DFS(int pos,string di,string temp,vector<string> &ans){
    if (pos==0) {ans.push_back(temp);return;}
    string m[8] = {"abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
    int len=m[di[0]-2].length();
    while(len--){
        DFS(pos-1,di.substr(1,pos-1),temp+m[di[0]-2][len],ans);
    }
}

class Solution {
public:
    vector<string> letterCombinations(string digits) {
        int len=digits.length();
        if(digits.empty()) return vector<string>();
        vector<string> ans;
        DFS(len,digits+" ","",ans);
        return ans;
    }
};

 

LeetCode 17. Letter Combinations of a Phone Number

原文:https://www.cnblogs.com/travelller/p/9452491.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!