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

Leetcode dfs Letter Combinations of a Phone Number

时间:2014-09-09 13:13:39      阅读:191      评论:0      收藏:0      [点我收藏+]

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


Letter Combinations of a Phone Number

 Total Accepted: 15964 Total Submissions: 60700My 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"].

Note:
Although the above answer is in lexicographical order, your answer could be in any order you want.


题意:给定一串手机按键的数字串,求可能的字母串组合
思路:dfs
用一个字符串数组保存每个数字对应可选择的字母
dfs枚举每个数字的每种选择的字母
复杂度:时间O(3^n),空间O(n)

string choices[] = {" ", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
vector<string> res;
string _digits;
void dfs(string str, int cur){
	if(cur == _digits.size()){
		res.push_back(str);
		return ;
	}
	string choice = choices[_digits[cur] - '0'];
	for_each(choice.begin(), choice.end(), [&](char c){
		dfs(str + c, cur + 1);
		//回溯 --> 因为 str和 cur的值没改,所以不用
	});
}
vector<string> letterCombinations(string digits){
	_digits = digits;
	dfs("", 0);
	return res;
}


Leetcode dfs Letter Combinations of a Phone Number

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

原文地址:http://blog.csdn.net/zhengsenlie/article/details/39137443

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