Day28 回溯算法 part04

Day28 回溯算法 part04

93.复原IP地址

我的思路:

在分割回文串代码的基础上改写,需要考虑多种情况

不合法的IP地址part:长度>1同时首数字为0 || 长度=0 || 长度>3 || >255

将各个part结合起来添加 "." 的时候,需要分前三part和最后一个,因此回溯完删除的范围也需要分别考虑

java 复制代码
class Solution {
    public List<String> res = new ArrayList();
    public StringBuffer path = new StringBuffer();
    public List<String> restoreIpAddresses(String s) {
        if(s == null || s.length() == 0) {
            return new ArrayList();
        }
        backtracing(s, 0, 0);
        return res;
    }
    public void backtracing(String s, int startIndex, int partNum) {
        if(partNum == 4) {
            if(startIndex == s.length()) {
                StringBuffer sb = new StringBuffer(path);
                res.add(sb.toString());
            }
            return;
        }
        for(int i = startIndex; i < s.length(); i++) {
            String part = s.substring(startIndex, i + 1);
            if(isValid(part)) {
                if(partNum < 3) {
                    path.append(part);
                    path.append('.');
                    backtracing(s, i + 1 , partNum + 1);
                    path.delete(path.length() - part.length() - 1, path.length());
                }
                else {
                    path.append(part);
                    backtracing(s, i + 1, partNum + 1);
                    path.delete(path.length() - part.length(), path.length());
                }  
            }
            else {
                break;
            }
        }
    }
    public boolean isValid(String s) {
        if(s.length() == 0 || s.length() > 3 || (s.charAt(0) == '0' && s.length() > 1) 
        || Integer.parseInt(s) > 255) {
            return false;
        }
        return true;
    }
}

78.子集

我的思路:

不需要考虑返回情况,将path全部加到result集合中

解答:

java 复制代码
class Solution {
    public List<Integer> path = new ArrayList();
    public List<List<Integer>> res = new ArrayList();
    public List<List<Integer>> subsets(int[] nums) {
        Arrays.sort(nums);
        backtracing(nums, 0);
        return res;
    }
    public void backtracing(int[] nums, int startIndex) {
        res.add(new ArrayList(path));
        for(int i = startIndex; i < nums.length; i++) {
            path.add(nums[i]);
            backtracing(nums, i+1);
            path.remove(path.size() - 1);
        }
    }
}

90.子集II

我的思路:

在上一题的基础上,判断要添加到path,在result里面是不是已经存在

另外模仿组合的做法进行了剪枝

解答:

java 复制代码
class Solution {
    public List<Integer> path = new ArrayList();
    public List<List<Integer>> res = new ArrayList();
    public List<List<Integer>> subsetsWithDup(int[] nums) {
        Arrays.sort(nums);
        backtracing(nums, 0);
        return res;
    }
    public void backtracing(int[] nums, int startIndex) {
        if(hasNums(path, res)) {
            res.add(new ArrayList(path));
        }
        for(int i = startIndex; i < nums.length; i++) {
            if(i > startIndex && nums[i] == nums[i-1]) {
                continue;
            }
            path.add(nums[i]);
            backtracing(nums, i+1);
            path.remove(path.size() - 1);
        }
    }
    public boolean hasNums(List<Integer> path, List<List<Integer>> res) {
        for(List l : res) {
            if(path.equals(l)){
                return false;
            }
        }
        return true;
    }
}
相关推荐
sjsjs112 分钟前
【数据结构-扫描线】力扣57. 插入区间
数据结构·算法·leetcode
lj9077226443 分钟前
Dockerfile部署xxljob
java·docker
王哈哈嘻嘻噜噜4 分钟前
数据结构中线性表的定义和特点
数据结构·算法
多则惑少则明13 分钟前
idea 编辑器常用插件集合
java·编辑器·intellij-idea
一杯茶一道题24 分钟前
LeetCode 260. 只出现一次的数字 III
算法·leetcode
BLUcoding24 分钟前
RabbitMQ08_保证消息可靠性
java·rabbitmq
MogulNemenis25 分钟前
力扣415周赛
java·数据结构·算法·leetcode
ai安歌26 分钟前
【JavaWeb】利用IDEA2024+tomcat10配置web6.0版本搭建JavaWeb开发项目
java·开发语言·后端·tomcat·web·intellij idea
Rense129 分钟前
常用的基于无线射频( UWB)室内定位技术的原理与算法
算法
zzhnwpu29 分钟前
代码随想录算法训练营第三七天| 动态规划:完全背包理论基础 518.零钱兑换II 377. 组合总和 Ⅳ 322. 零钱兑换
算法·leetcode·动态规划