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;
    }
}
相关推荐
半盏茶香16 分钟前
扬帆数据结构算法之雅舟航程,漫步C++幽谷——LeetCode刷题之移除链表元素、反转链表、找中间节点、合并有序链表、链表的回文结构
数据结构·c++·算法
是梦终空17 分钟前
JAVA毕业设计210—基于Java+Springboot+vue3的中国历史文化街区管理系统(源代码+数据库)
java·spring boot·vue·毕业设计·课程设计·历史文化街区管理·景区管理
CodeJourney.36 分钟前
小型分布式发电项目优化设计方案
算法
基哥的奋斗历程42 分钟前
学到一些小知识关于Maven 与 logback 与 jpa 日志
java·数据库·maven
m0_5127446442 分钟前
springboot使用logback自定义日志
java·spring boot·logback
十二同学啊1 小时前
JSqlParser:Java SQL 解析利器
java·开发语言·sql
老马啸西风1 小时前
Plotly 函数图像绘制
java
方圆想当图灵1 小时前
缓存之美:万文详解 Caffeine 实现原理(上)
java·缓存
带多刺的玫瑰1 小时前
Leecode刷题C语言之从栈中取出K个硬币的最大面积和
数据结构·算法·图论
Cando学算法1 小时前
Codeforces Round 1000 (Div. 2)(前三题)
数据结构·c++·算法