[LeetCode]17. Letter Combinations of a Phone Number

栏目: 编程工具 · 发布时间: 5年前

内容简介:想写非递归的写法,如果用深度遍历考虑的话会比较困难,需要保存中间态,可以看成不断对上一状态的广度遍历

Given a string containing digits from 2-9 inclusive, 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. Note that 1 does not map to any letters.

[LeetCode]17. Letter Combinations of a Phone Number Example:

Input: "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.

是一个不定层的循环问题,而且内层要有外层的状态

可以通过递归解决

List<String> ret=new ArrayList();
List<List<Character>> list=new ArrayList(){
    {
        add(Arrays.asList('a','b','c'));
        add(Arrays.asList('d','e','f'));
        add(Arrays.asList('g','h','i'));
        add(Arrays.asList('j','k','l'));
        add(Arrays.asList('m','n','o'));
        add(Arrays.asList('p','q','r','s'));
        add(Arrays.asList('t','u','v'));
        add(Arrays.asList('w','x','y','z'));
    }
};
public List<String> letterCombinations(String digits) {
    if(digits==null || digits.length()==0) return ret;
    ref("",digits);
    return ret;
}
private void ref(String s,String digits){
    if(digits.length()==0) {
        ret.add(s);
        return;
    }
    List<Character> clist=list.get(digits.charAt(0)-'2');
    for(char c:clist){
        ref(s+c,digits.substring(1));
    }
}

想写非递归的写法,如果用深度遍历考虑的话会比较困难,需要保存中间态,可以看成不断对上一状态的广度遍历

public List<String> letterCombinations(String digits) {
    List<String> ret=new ArrayList();
    if(digits.length()<=0) return ret;
    List<List<Character>> list=new ArrayList(){
        {
            add(Arrays.asList('a','b','c'));
            add(Arrays.asList('d','e','f'));
            add(Arrays.asList('g','h','i'));
            add(Arrays.asList('j','k','l'));
            add(Arrays.asList('m','n','o'));
            add(Arrays.asList('p','q','r','s'));
            add(Arrays.asList('t','u','v'));
            add(Arrays.asList('w','x','y','z'));
        }
    };
    ret.add("");
    char[] array=digits.toCharArray();
    for(int i=0;i<array.length;i++){
        List<String> ret1=new ArrayList();
        for(char c:list.get(array[i]-'2')){
            for(String s:ret){
                ret1.add(s+String.valueOf(c));
            }
        }
        ret=ret1;
    }
    return ret;
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

奔跑吧,程序员

奔跑吧,程序员

[美]叶夫根尼·布里克曼(Yevgeniy Brikman) / 吴晓嘉 / 人民邮电出版社 / 2018-7 / 99.00元

本书以软件工程师出身的创业者的角度,全面介绍了创业公司该如何打造产品、实现技术和建立团队,既是为创业者打造的一份实用入门指南,又适合所有程序员系统认识IT行业。书中内容分为三部分——技术、产品和团队,详细描绘创业的原始景象,具体内容包括:创业点子、产品设计、数据与营销、技术栈的选择、整洁的代码、软件交付、创业文化、招兵买马,等等。一起来看看 《奔跑吧,程序员》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具