93.复原IP地址
题目链接/文章讲解: 代码随想录
和分割的同样题型
Java代码:
class Solution {
List<String> result = new ArrayList<>();
public List<String> restoreIpAddresses(String s) {
if (s.length() > 12) return result; // 算是剪枝了
backTrack(s, 0, 0);
return result;
}
// startIndex: 搜索的起始位置, pointNum:添加逗点的数量
private void backTrack(String s, int startIndex, int pointNum) {
if (pointNum == 3) {// 逗点数量为3时,分隔结束
// 判断第四段⼦字符串是否合法,如果合法就放进result中
if (isValid(s,startIndex,s.length()-1)) {
result.add(s);
}
return;
}
for (int i = startIndex; i < s.length(); i++) {
if (isValid(s, startIndex, i)) {
s = s.substring(0, i + 1) + "." + s.substring(i + 1); //在str的后⾯插⼊⼀个逗点
pointNum++;
backTrack(s, i + 2, pointNum);// 插⼊逗点之后下⼀个⼦串的起始位置为i+2
pointNum--;// 回溯
s = s.substring(0, i + 1) + s.substring(i + 2);// 回溯删掉逗点
} else {
break;
}
}
}
// 判断字符串s在左闭⼜闭区间[start, end]所组成的数字是否合法
private Boolean isValid(String 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;
}
}
78.子集
题目链接/文章讲解: 代码随想录
子集需要把所有节点都记录下来 通过集合的形式输出所有子集
Java代码:(递归)
class Solution{
List<List<Integer>> result = new ArrayList<>();//存放符合条件结果的集合
LinkedList<Integer> path = new LinkedList<>();//存放符合条件的结果
public List<List<Integer>> subsets(int[] nums){
subsets1(nums, 0);
return result;
}
public void subsets1(int[] nums, int startindex){
result.add(new ArrayList<>(path));//遍历这个树时
//把所有节点都记录下来 就是要求的集合
if(startindex >= nums.length){//终止条件可以不加 在for循环里已经结束了
return;
}
for(int i = startindex; i < nums.length; i++){
path.add(nums[i]);
subsets1(nums, i + 1);
path.removeLast();
}
}
}
90.子集II
题目链接/文章讲解: 代码随想录
求组合就是求子集的特殊情况!
Java代码:
class Solution {
List<List<Integer>> ans = new ArrayList<>();
LinkedList<Integer> path = new LinkedList<>();
public List<List<Integer>> subsetsWithDup(int[] nums){
Arrays.sort(nums);
backtracking(nums, 0);
return ans;
}
public void backtracking(int[] nums, int startindex){
ans.add(new ArrayList<>(path));//添加答案
for(int i = startindex; i < nums.length; i++){
//跳过当前树层使用过的相同元素
if(i > startindex && nums[i - 1] == nums[i]) continue;
path.add(nums[i]);
backtracking(nums, i + 1);
path.removeLast();
}
}
}
补一下打卡

被折叠的 条评论
为什么被折叠?



