93. 复原IP地址
https://leetcode-cn.com/problems/restore-ip-addresses/
解法一:
dfs遍历,每层递归尝试截取1~3
位(每段ip位数为1~3),为防止递归栈过深,递归出口设为4段(ip只有4段)。
最后更新于
https://leetcode-cn.com/problems/restore-ip-addresses/
dfs遍历,每层递归尝试截取1~3
位(每段ip位数为1~3),为防止递归栈过深,递归出口设为4段(ip只有4段)。
最后更新于