LeetCode之电话号码的字母组合

开发 前端
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。

[[442756]]

前言

我们社区陆续会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。微博:@故胤道长[1])的 Swift 算法题题解整理为文字版以方便大家学习与阅读。

LeetCode 算法到目前我们已经更新了 16 期,我们会保持更新时间和进度(周一、周三、周五早上 9:00 发布),每期的内容不多,我们希望大家可以在上班路上阅读,长久积累会有很大提升。

不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。如果大家有建议和意见欢迎在文末留言,我们会尽力满足大家的需求。

难度水平:中等

1. 描述

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。答案可以按 任意顺序 返回。

给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。

[[442757]]

2. 示例

示例 1

  1. 输入:digits = "23" 
  2. 输出:["ad","ae","af","bd","be","bf","cd","ce","cf"

示例 2

  1. 输入:digits = "" 
  2. 输出:[] 

示例 3

  1. 输入:digits = "2" 
  2. 输出:["a","b","c"

约束条件:

  • 0 <= digits.length <= 4
  • digits[i] 是范围 ['2', '9'] 的一个数字

3. 答案

  1. class LetterCombinationsPhoneNumber { 
  2.     func letterCombinations(_ digits: String) -> [String] { 
  3.         guard digits.count > 0 else { 
  4.             return [String]() 
  5.         } 
  6.          
  7.         var combinations = [String](), combination = "" 
  8.         let numberToStr = ["""""abc""def""ghi""jkl""mno""pqrs""tuv""wxyz"
  9.          
  10.         dfs(&combinations, &combination, numberToStr, digits, 0) 
  11.          
  12.         return combinations 
  13.     } 
  14.      
  15.     private func dfs(_ combinations: inout [String], _ combination: inout String, _ numberToStr: [String], _ digits: String, _ indexInt) { 
  16.         if combination.count == digits.count { 
  17.             combinations.append(combination) 
  18.             return 
  19.         } 
  20.          
  21.         let currentStr = fetchCurrentStr(from: digits, atindex, numberToStr) 
  22.          
  23.         for char in currentStr { 
  24.             combination.append(char
  25.             dfs(&combinations, &combination, numberToStr, digits, index + 1) 
  26.             combination.removeLast() 
  27.         } 
  28.     } 
  29.          
  30.     private func fetchCurrentStr(from digits: String, at indexInt, _ numberToStr: [String]) -> String { 
  31.         guard index >= 0 && index < digits.count else { 
  32.             fatalError("Invalid index"
  33.         } 
  34.          
  35.         let currentDigitChar = digits[digits.index(digits.startIndex, offsetBy: index)] 
  36.          
  37.         guard let currentDigit = Int(String(currentDigitChar)), currentDigit >= 0, currentDigit < numberToStr.count else { 
  38.             fatalError("Invalid digits"
  39.         } 
  40.          
  41.         return numberToStr[currentDigit] 
  42.     } 
  • 主要思想:经典的深度优先搜索,首先创建电话板
  • 时间复杂度:O(4^n), n 表示数字长度
  • 空间复杂度:O(n), n 表示数字长度

该算法题解的仓库:LeetCode-Swift[2]

点击前往 LeetCode[3] 练习

参考资料

[1]@故胤道长:

https://m.weibo.cn/u/1827884772

[2]LeetCode-Swift:

https://github.com/soapyigu/LeetCode-Swift[3]LeetCode: https://leetcode.com/problems/letter-combinations-of-a-phone-number

 

责任编辑:姜华 来源: Swift社区
相关推荐

2017-01-10 13:42:18

大数据深度学习识别图片

2009-06-26 10:15:27

Google语音服务

2018-05-29 16:43:51

VDIIDV字母

2021-12-06 11:51:43

静态库动态库C语言

2020-03-11 08:52:17

Session开源通信应用

2013-04-10 18:12:57

2015-07-23 10:43:47

云端数据存储PostgreSQL在SparkTG

2021-09-17 05:42:13

微信一证通查腾讯

2021-07-12 11:15:20

黑客数据泄露网络攻击

2015-08-19 09:21:19

国际电话区号代码实践

2021-09-06 11:51:26

项目C语言开发

2015-05-08 09:57:59

绑定端口端口复用网络编程

2021-04-05 18:10:04

网络安全数据泄露Facebook

2023-12-27 07:56:29

内存哈希算法排序算法

2014-08-13 18:31:33

谷歌垃圾邮件欺诈邮件

2009-08-08 22:10:29

IP地址的分配局域网设置

2020-11-17 06:43:16

安卓智能手机移动应用

2023-03-28 22:45:13

2021-04-06 09:25:06

网络安全数据技术
点赞
收藏

51CTO技术栈公众号