leetcode 每日一题 93. 复原IP地址

Posted nil_f

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 每日一题 93. 复原IP地址相关的知识,希望对你有一定的参考价值。

回溯法

思路:

dfs,深度优先搜索。

代码:

class Solution:
    def restoreIpAddresses(self, s: str) -> List[str]:
        def valid(segment):
            return int(segment) <= 255 if segment[0] != \'0\' else len(segment) == 1
        def update_output(cur):
            segment = s[cur + 1:n]
            if valid(segment):
                path.append(segment)
                output.append(\'.\'.join(path))
                path.pop()    
        def backtrack(start = 0, dots = 3):
            for cur in range(start , min(n - 1, start + 3)):
                segment = s[start :cur + 1]
                if valid(segment):
                    path.append(segment)  
                    if dots - 1 == 0:  
                        update_output(cur)  
                    else:
                        backtrack(cur+1, dots - 1)  
                    path.pop() 
        n = len(s)
        output, path = [], []
        backtrack()
        return output 

 

以上是关于leetcode 每日一题 93. 复原IP地址的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 93. 复原IP地址

[JavaScript 刷题] 搜索 - 复原 IP 地址, leetcode 93

leetcode-93-复原ip地址

LeetCode 93. 复原IP地址

LeetCode 93. 复原IP地址

Leetcode No.93 复原 IP 地址(DFS)