当前位置: 首页 > article >正文

代码随想录算法训练营第二八天 | 分割 子集

目录

  • 复原IP地址
  • 子集
  • 子集 II

LeetCode 93.复原IP地址
LeetCode 78.子集
LeetCode 90.子集II

复原IP地址

一些字符串的基本操作不会

s.insert(i + 1, ‘.’);

s.deleteCharAt(i + 1);

class Solution {

    List<String> result = new ArrayList<>();

    public List<String> restoreIpAddresses(String s) {
        StringBuilder sb = new StringBuilder(s);   // 注意  StringBuilder(s)
        backtracking(sb, 0, 0);
        return result;
    }

    private void backtracking(StringBuilder s, int startIndex, int pointNum) {
        if (pointNum == 3) {
            if (isValid(s, startIndex, s.length() - 1)) { // 结束条件
                result.add(s.toString());
            }
            return;
        }
        
        for (int i = startIndex; i < s.length(); i++) {
            if (isValid(s, startIndex, i)) {
                s.insert(i + 1, '.');
                backtracking(s, i + 2, pointNum + 1);
                s.deleteCharAt(i + 1);
            } else {
                break;
            }
        }
    }

    private boolean isValid(StringBuilder s, int start, int end) {
        if (start > end) {
            return false;
        }
        if (s.charAt(start) == '0' && start != end) {// 0开头的数字不合法
            return false;
        }
        int num = 0;
        for (int i = start; i <= end; i++) {
            if (s.charAt(i) > '9' || s.charAt(i) < '0') {
                return false;
            }
            num = num * 10 + (s.charAt(i) - '0');
            if (num > 255) {// 如果⼤于255了不合法
                return false;
            }
        }
        return true;
    }
}

子集

组合问题和分割问题都是收集树的叶子节点,而子集问题是找树的所有节点
在这里插入图片描述
遍历这个树的时候,把所有节点都记录下来,就是要求的子集集合。

求取子集问题,不需要任何剪枝!因为子集就是要遍历整棵树。

result.add(new ArrayList<>(path)); // 放在终止条件的外面

class Solution {
    List<List<Integer>> result = new ArrayList<>();
    List<Integer> path = new ArrayList<>();
    public List<List<Integer>> subsets(int[] nums) {
        backTracking(nums, 0);
        return result;
    }   

    private void backTracking(int[] nums, int startIndex) {
        result.add(new ArrayList<>(path));   // 最重要的一步,遍历整棵树,获取所有节点
        if (startIndex >= nums.length) {  //终止条件可不加
            return;
        }
        for (int i = startIndex; i < nums.length; i++) {
            path.add(nums[i]);
            backTracking(nums, i + 1);
            path.removeLast();
        }
    }
}

子集 II

重点: 排序、i > startIndex
跳过当前树层使用过的、相同的元素

在这里插入图片描述

class Solution {
    List<List<Integer>> result = new ArrayList<>();
    List<Integer> path = new ArrayList<>();
    public List<List<Integer>> subsetsWithDup(int[] nums) {
        Arrays.sort(nums);
        backTracking(nums, 0);
        return result;
    }

    private void backTracking(int[] nums, int startIndex) {
        result.add(new ArrayList<>(path));

        if (startIndex >= nums.length) return;

        for (int i = startIndex; i < nums.length; i++) {
            // 跳过当前树层使用过的、相同的元素
            if (i > startIndex && nums[i] == nums[i - 1]) {
                // path.removeLast();
                continue;
            }
            path.add(nums[i]);
            backTracking(nums, i + 1);
            path.removeLast();
        }
    }
}

http://www.kler.cn/a/229800.html

相关文章:

  • vue 导出excel接口请求和axios返回值blob类型处理
  • 2025年第三届“华数杯”国际赛A题解题思路与代码(Matlab版)
  • 电脑提示directx错误导致玩不了游戏怎么办?dx出错的解决方法
  • MySQL 如何赶上 PostgreSQL 的势头?
  • 比较procfs 、 sysctl和Netlink
  • el-table表格合并某一列
  • Python 调用 OpenAI ChatGPT API
  • leetcode-top100链表专题二
  • Django通过Json配置文件分配多个定时任务
  • 比较两次从接口获取的数据,并找出变动的字段
  • 071:vue中过滤器filters的使用方法(图文示例)
  • Z函数的原理和应用:以Python为例
  • 微信自动预约小程序开发指南:从小白到专家
  • HiSilicon352 android9.0 开机视频调试分析
  • Micro micro controller一览
  • window 安装 jenkins 编写脚本
  • Linux 网络:PTP 简介
  • 5-3、S曲线生成器【51单片机+L298N步进电机系列教程】
  • 解决:VSCode 连接服务器时出错:Could not establish connection to : XHR failed
  • Vivado-IP核
  • 挑战杯 python+opencv+机器学习车牌识别
  • Maven:设定项目编码
  • 全链游戏的未来趋势与Bridge Champ的创新之路
  • python进行批量搜索匹配替换文本文字的matlab操作实例
  • 【Mysql】事务的隔离级别与 MVCC
  • 【Qt学习笔记】(三)常用控件(持续更新)