Leetcode#17 Letter Combinations of a Phone Number

本文详细解析了一道经典的深度优先搜索(DFS)算法题目——电话号码的字母组合。通过递归的方式,实现了从电话键盘上的数字到对应字母的所有可能组合,展示了DFS算法在解决此类问题上的应用。

原题地址

 

简单DFS题目

 

代码:

 1 vector<string> res;
 2     
 3 void dfs(string &digits, vector<string> &i2s, string ans, int pos) {
 4   if (pos == digits.length()) {
 5     res.push_back(ans);
 6     return;
 7   }
 8         
 9   for (auto c : i2s[digits[pos] - '0'])
10     dfs(digits, i2s, ans + c, pos + 1);
11 }
12 
13 vector<string> letterCombinations(string digits) {
14   vector<string> i2s {"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
15   dfs(digits, i2s, "", 0);
16   return res;
17 }

 

转载于:https://www.cnblogs.com/boring09/p/4262510.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值