代码随想录训练营二刷第二十五天 | 216.组合总和III 17.电话号码的字母组合

代码随想录训练营二刷第二十五天 | 216.组合总和III 17.电话号码的字母组合

一、216.组合总和III

题目链接:https://leetcode.cn/problems/combination-sum-iii/

思路:模板题

java 复制代码
class Solution {
    List<List<Integer>> arrayList = new ArrayList<>();
    List<Integer> list = new ArrayList<>();
    int sum = 0;
    public List<List<Integer>> combinationSum3(int k, int n) {
        backTracking(k, n, 1);
        return arrayList;
    }
    void backTracking(int k, int n, int index) {
        if (list.size() < k && sum > n) return;
        if (list.size() == k && sum == n) {
            arrayList.add(new ArrayList<>(list));
            return;
        }
        for (int i = index; i <= 9; i++) {
            list.add(i);
            sum += i;
            backTracking(k, n, i+1);
            list.remove(list.size()-1);
            sum -= i;
        }
    }
}

二、17.电话号码的字母组合

题目链接:https://leetcode.cn/problems/letter-combinations-of-a-phone-number/

思路:每次递归选取的集合需要改变

java 复制代码
class Solution {
    List<String> list = new ArrayList<>();
    StringBuilder builder = new StringBuilder();
    public List<String> letterCombinations(String digits) {
        if (digits.length() == 0) return list;
        String[] init = {"", "", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"};
        String[] strList = new String[digits.length()];
        for (int i = 0; i < digits.length(); i++) {
            strList[i] = init[digits.charAt(i) - '0'];
        }
        backTracking(strList, 0);
        return list;
    }
    void backTracking(String[] strList, int index) {
        if (builder.length() == strList.length) {
            list.add(builder.toString());
            return;
        }
        String strings = strList[index];
        for (int i = 0; i < strings.length(); i++) {
            builder.append(strings.charAt(i));
            backTracking(strList, index + 1);
            builder.deleteCharAt(index);
        }
    }
}
相关推荐
带多刺的玫瑰17 分钟前
Leecode刷题C语言之切蛋糕的最小总开销①
java·数据结构·算法
巫师不要去魔法部乱说28 分钟前
PyCharm专项训练5 最短路径算法
python·算法·pycharm
qystca1 小时前
洛谷 P11242 碧树 C语言
数据结构·算法
冠位观测者1 小时前
【Leetcode 热题 100】124. 二叉树中的最大路径和
数据结构·算法·leetcode
XWXnb61 小时前
数据结构:链表
数据结构·链表
悲伤小伞1 小时前
C++_数据结构_详解二叉搜索树
c语言·数据结构·c++·笔记·算法
m0_675988232 小时前
Leetcode3218. 切蛋糕的最小总开销 I
c++·算法·leetcode·职场和发展
hnjzsyjyj3 小时前
“高精度算法”思想 → 大数阶乘
数据结构·高精度算法·大数阶乘
佳心饼干-4 小时前
C语言-09内存管理
c语言·算法
dbln4 小时前
贪心算法(三)
算法·贪心算法