博客
关于我
【LeetCode 中等题】48-复原IP地址
阅读量:302 次
发布时间:2019-03-01

本文共 2116 字,大约阅读时间需要 7 分钟。

题目描述:给定一个只包含数字的字符串,复原它并返回所有可能的 IP 地址格式。

示例:

输入: "25525511135"输出:
["255.255.11.135", "255.255.111.35"]

解法1。暴力解法,用4个变量分别从[1,4)遍历,再由此确定4个分段的下标

class Solution(object):    def restoreIpAddresses(self, s):        """        :type s: str        :rtype: List[str]        """        if not s or len(s) > 12:            return []        res = []        for a in range(1,4):            for b in range(1,4):                for c in range(1,4):                    for d in range(1,4):                        if a+b+c+d == len(s):  # 这一句一定要注意,必须要加,只有满足此条件时才有效,大于会超index,小于无效                            ip_s = ''                            A = int(s[:a])                            B = int(s[a:a+b])                            C = int(s[a+b:a+b+c])                            D = int(s[a+b+c:a+b+c+d])                            if A <= 255 and B <= 255 and C <= 255 and D <= 255:                                ip_s = str(A)+'.'+str(B)+'.'+str(C)+'.'+str(D)                            if len(ip_s) == len(s)+3 and ip_s not in res:                                res.append(ip_s)        return res

解法2。用递归的解法。隐约觉得这个思路就是人思考的思路,从第一个子串开始,其变化范围为[1,4),先判断这个子串是否有效,然后递归下去看下一个子串,而这下一个子串的判断思路和上一个一样,也需要经过for循环,变化范围为[1,4),再加上一些有效的判断条件,用k值记录字还剩下几个字符串要判断,这个思路也可以改成[0,4]来判断,

class Solution(object):    def restoreIpAddresses(self, s):        """        :type s: str        :rtype: List[str]        """        if not s or len(s) > 12 or len(s) < 4:            return []        res = []        out = ''        k = 4        self.restore(s, k, out, res)        return res        def restore(self, s, k, out, res):        if k == 0:            if not s: res.append(out)                        else:            for i in range(1,4):                if len(s) >= i and self.isValid(s[:i]):                    if k == 1:                        self.restore(s[i:], k-1, out + s[:i], res)                    else:                        self.restore(s[i:], k-1, out+s[:i]+'.', res)        def isValid(self, s):        if not s or len(s)>3 or (len(s)>1 and s[0]=='0'):            return False        res = int(s)        return res <= 255 and res >= 0

参考链接:

转载地址:http://vufo.baihongyu.com/

你可能感兴趣的文章
nginx负载均衡的5种策略(转载)
查看>>
nginx负载均衡的五种算法
查看>>
Nginx负载均衡详解
查看>>
Nginx负载均衡(upstream)
查看>>
Vue中删除el-table当前行的方法
查看>>
nginx转发端口时与导致websocket不生效
查看>>
Nginx运维与实战(一)-Nginx不同场景使用方法
查看>>
Nginx运维与实战(二)-Https配置
查看>>
Nginx部署_mysql代理_redis代理_phoenix代理_xxljob代理_websocket代理_Nacos代理_内网穿透代理_多系统转发---记录021_大数据工作笔记0181
查看>>
nginx部署本地项目如何让异地公网访问?服务器端口映射配置!
查看>>
Nginx配置HTTPS服务
查看>>
Nginx配置https的一个误区(导致404错误)
查看>>
Nginx配置Https证书
查看>>
Nginx配置http跳转https
查看>>
Nginx配置ssl实现https
查看>>
nginx配置ssl证书https解决公网ip可以访问但是域名不行的问题
查看>>
Nginx配置TCP代理指南
查看>>
NGINX配置TCP连接双向SSL
查看>>
Nginx配置——不记录指定文件类型日志
查看>>
nginx配置一、二级域名、多域名对应(api接口、前端网站、后台管理网站)
查看>>