首页 > 代码库 > LeetCode Letter Combinations of a Phone Number
LeetCode 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"].题意:输出所有的可能
思路:DFS一下就行了
class Solution { public: const string str[10] = {"", "", "abc", "def", "ghi", "jkl", "mno", "qprs", "tuv", "wxyz"}; void cal(int dep, string &tmp, vector<string> &ans, string &digits) { if (dep == digits.size()) { ans.push_back(tmp); return; } for (int i = 0; i < str[digits[dep]-'0'].size(); i++) { tmp.push_back(str[digits[dep]-'0'][i]); cal(dep+1, tmp, ans, digits); tmp.pop_back(); } } vector<string> letterCombinations(string digits) { vector<string> ans; string tmp = ""; cal(0, tmp, ans, digits); return ans; } };
LeetCode Letter Combinations of a Phone Number
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。