力扣93:复原IP地址(golang)-字节跳动算法题
Posted Kris_u
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣93:复原IP地址(golang)-字节跳动算法题相关的知识,希望对你有一定的参考价值。
93. 复原 IP 地址 - 力扣(LeetCode) (leetcode-cn.com)
有效 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、每个整数都可以归纳为三种情况:1位数字;2位数字;3位数字,然后递归即可。
2、统计切分次数,且只能切分3次,所以第四次切分时,剩余的字符串必为空。
func restoreIpAddress(s string) (res []string)
res = restore(0, "", s, res)
fmt.Println("restoreIpAddress", res)
return res
// count record split times, ip record ip, s record remaining string
func restore(count int, ip, s string, res []string) []string
if count == 4
if s == ""
res = append(res, ip[:len(ip)-1]) //len(ip)-1是为了删掉末尾多余的“.”
return res
else if count < 4 // 切分次数小于4时
//每个整数位数总共有三种情况: 1位;2位;3位
if len(s) > 0 //1位数
res = restore(count+1, ip+string(s[0])+".", s[1:], res)
if len(s) > 1 && string(s[0]) != "0" //2位数,且第一位非0
res = restore(count+1, ip+string(s[:2])+".", s[2:], res)
if len(s) > 2 && string(s[0]) != "0" //三位数,第一位非0,且必须小于256
number, _ := strconv.Atoi(s[0:3]) //
if number < 256
// fmt.Println("string(s[:3])", s)
res = restore(count+1, ip+string(s[:3])+".", s[3:], res)
return res
package main
import (
"fmt"
"strconv"
)
func main()
restoreIpAddress("25525511135")
restoreIpAddress("0000")
restoreIpAddress("101023")
编译输出:
restoreIpAddress [255.255.11.135 255.255.111.35]
restoreIpAddress [0.0.0.0]
restoreIpAddress [1.0.10.23 1.0.102.3 10.1.0.23 10.10.2.3 101.0.2.3]
以上是关于力扣93:复原IP地址(golang)-字节跳动算法题的主要内容,如果未能解决你的问题,请参考以下文章
力扣算法JS LC [17. 电话号码的字母组合] LC [93. 复原 IP 地址]