LeetCode: Restore IP Addresses

思路:递归求解,记录点数,如果超过了3个点(IP地址中),而且当前位置已经到了字符串的最后一个位置,则说明分割完成,只要每个部分的数都在255以内,则可以作为一个解。注意 10.00.10.1 这种格式是不允许的,在中间过程加以判断。

code:

class Solution {
public:
    void solve(int pointNum,int start,string s,string curS, vector<string> &ret){
        if(pointNum > 3){
            if(start >= s.length())
                ret.push_back(curS);
            return;
        }
        for(int i = 1;i<=3;i++){
            if(start + i <= s.length()){
                string temp = s.substr(start,i);
                int curNum = atoi(temp.c_str());
                if(temp[0] == '0' && temp.length() > 1)
                    continue;
                if(curNum <= 255){
                    string tempS = curS;
                    if(pointNum >= 1)
                        tempS += ".";
                    tempS += temp;
                    solve(pointNum+1,start+i,s,tempS,ret);
                }
            }
        }
    }
    vector<string> restoreIpAddresses(string s) {
        vector<string> ret;
        string tempS;
        solve(0,0,s,tempS,ret);
        return ret;
    }
};


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值