博客
关于我
【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/

你可能感兴趣的文章
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>
mysql CONCAT()函数拼接有NULL
查看>>
multiprocessing.Manager 嵌套共享对象不适用于队列
查看>>
multiprocessing.pool.map 和带有两个参数的函数
查看>>
MYSQL CONCAT函数
查看>>
multiprocessing.Pool:map_async 和 imap 有什么区别?
查看>>
MySQL Connector/Net 句柄泄露
查看>>
multiprocessor(中)
查看>>
mysql CPU使用率过高的一次处理经历
查看>>
Multisim中555定时器使用技巧
查看>>
MySQL CRUD 数据表基础操作实战
查看>>
multisim变压器反馈式_穿过隔离栅供电:认识隔离式直流/ 直流偏置电源
查看>>
mysql csv import meets charset
查看>>
multivariate_normal TypeError: ufunc ‘add‘ output (typecode ‘O‘) could not be coerced to provided……
查看>>
MySQL DBA 数据库优化策略
查看>>
multi_index_container
查看>>