1. 93. 复原 IP 地址
有效 IP 地址 正好由四个整数(每个整数位于 0 到 255 之间组成,且不能含有前导 0),整数之间用 ‘.’ 分隔。
例如:“0.1.2.201” 和 “192.168.1.1” 是 有效 IP 地址,但是 “0.011.255.245”、“192.168.1.312” 和 “192.168@1.1” 是 无效 IP 地址。
给定一个只包含数字的字符串 s ,用以表示一个 IP 地址,返回所有可能的有效 IP 地址,这些地址可以通过在 s 中插入 ‘.’ 来形成。你 不能 重新排序或删除 s 中的任何数字。你可以按 任何 顺序返回答案。
示例 1:
输入:s = “25525511135”
输出:[“255.255.11.135”,“255.255.111.35”]
示例 2:
输入:s = “0000”
输出:[“0.0.0.0”]
示例 3:
输入:s = “101023”
输出:[“1.0.10.23”,“1.0.102.3”,“10.1.0.23”,“10.10.2.3”,“101.0.2.3”]
class Solution:
def restoreIpAddresses(self, s: str) -> List[str]:
#遍历插入位置
n = len(s)
res, path =[], []
def recur(start_index):
if start_index >= n:
if len(path) == 4:
res.append(".".join(path))
return
if len(path) > 4:
return
for i in range(start_index, min(start_index + 3, n)):
cur_string = s[start_index:i + 1]
if 0 <= int(cur_string) <= 255:
if len(cur_string) > 1 and cur_string[0] == '0':
continue
path.append(cur_string)
recur(i + 1)
path.pop()
return
recur(0)
return res
2. 78. 子集
给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的
子集
(幂集)。
解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
示例 1:
输入:nums = [1,2,3]
输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]
示例 2:
输入:nums = [0]
输出:[[],[0]]
class Solution:
def subsets(self, nums: List[int]) -> List[List[int]]:
res, path = [], []
def dfs(start_index):
if start_index >= len(nums):
res.append(path[:])
return
# 有取当前元素和不取当前元素的逻辑
path.append(nums[start_index])
dfs(start_index + 1)
path.pop()
dfs(start_index + 1)
return
dfs(0)
return res
3. 90. 子集 II
给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的
子集
(幂集)。
解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。
示例 1:
输入:nums = [1,2,2]
输出:[[],[1],[1,2],[1,2,2],[2],[2,2]]
示例 2:
输入:nums = [0]
输出:[[],[0]]
class Solution:
def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
#不能选重复的关键在于同层递归中不能选和之前相同元素
nums = sorted(nums)
res, path = [[]], []
def recur(start_index: int):
if start_index >= len(nums):
return
#同层递归
for i in range(start_index, len(nums)):
if i > start_index and nums[i] == nums[i-1]:
continue
path.append(nums[i])
res.append(path[:])
recur(i + 1)
path.pop()
return
recur(0)
return res