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

电话号码的字母组合 · Letter Combinations of a Phone Number

时间:2018-02-20 16:23:15      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:body   dfs   复杂   space   gpo   clu   oss   repr   思维   

[抄题]:

Given a digit string excluded 01, 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.

给定 "23"

返回 ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]

 [暴力解法]:

时间分析:

空间分析:

[思维问题]:

  1. 以为是树中分治型的DFS, 其实是图中枚举型的DFS,写法都不一样,应该是for循环,没有概念

[一句话思路]:

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

[总结]:

[复杂度]:Time complexity: O() Space complexity: O()

[英文数据结构或算法,为什么不用别的数据结构或算法]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

 [代码风格] :

电话号码的字母组合 · Letter Combinations of a Phone Number

标签:body   dfs   复杂   space   gpo   clu   oss   repr   思维   

原文地址:https://www.cnblogs.com/immiao0319/p/8455314.html

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