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

你可能感兴趣的文章
Mysql实战之数据备份
查看>>
MySQL实战教程:从小白到大神的进阶之路!
查看>>
mysql实现成绩排名
查看>>
Mysql客户端中文乱码问题解决
查看>>
mysql客户端工具使用
查看>>
MySQL密码忘记,怎么办?
查看>>
mysql对同一张表进行查询和赋值更新
查看>>
mysql导入数据库出现:Incorrect string value: '\xE7\x82\xB9\xE9\x92\x9F' for column 'chinese' at row 1...
查看>>
mysql导入(ibd文件)
查看>>
Mysql工作笔记006---Mysql服务器磁盘爆满了_java.sql.SQLException: Error writing file ‘tmp/MYfXO41p‘
查看>>
MySQL工具1:mysqladmin
查看>>
mysql常用命令
查看>>
MySQL常用命令
查看>>
mysql常用命令
查看>>
MySQL常用指令集
查看>>
mysql常用操作
查看>>
MySQL常用日期格式转换函数、字符串函数、聚合函数详
查看>>
MySQL常见函数
查看>>
MySQL常见架构的应用
查看>>
MySQL常见的三种存储引擎(InnoDB、MyISAM、MEMORY)
查看>>