leetcode: Restore IP Addresses

140 篇文章 0 订阅

Given a string containing only digits, restore it by returning all possible valid IP address combinations.

For example:
Given "25525511135",

return ["255.255.11.135", "255.255.111.35"]. (Order does not matter)


DFS、回溯

class Solution {
public:
    vector<string> restoreIpAddresses(string s) {
        vector< string> res;
        if( s.size() < 4 || s.size() > 12)
            return res;
        core( res, s, 0, "");
        return res;
        
    }
    void core( vector< string> &res, string s, int index, string cur){
        if( s.size() == index && cur.size() == s.size() + 4){
            cur.pop_back();
            res.push_back(cur);
            return;
        }
        if( index > s.size() || cur.size() > s.size() + 4)
            return;
        if( s[index] == '0')//这里要考虑如果首位是0,那么这各的ip就是0了,可以直接往下继续搜,不用考虑两位数和三位数的情况
            core( res, s, index + 1, cur + "0.");
        else{
            for( int j = 1; j <= 3; ++j){
                string tmp = s.substr( index, j);
                int valid = atoi( tmp.c_str());
                if( valid < 256 && valid >= 0){
                    core( res, s, index + j, cur+tmp+'.');
                }
            }
        }
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值