leetcode Restore IP Addresses

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)


该题要返回所有可能结果,就递归解决了。

每次递归尝试添加1位、2位、3位做一段ip,条件是数值小于255

有个小陷阱,就是ip地址的某一段不能以0开头

class Solution {
public:
    vector<string> restoreIpAddresses(string str){
		vector<string>result;
		if(str.empty())
			return result;
		string tmpIP;
		getAllIP(result, str, tmpIP, 0, 0);
		return result;
    }
	void getAllIP(vector<string>& result, string str, string tmpIP, int k, int i)
	{
		int len = str.length();
		if(i>4)
			return;
		if(k == len)
		{
			if(i==4)
			{
				tmpIP.pop_back();//去掉最后一个'.'
				result.push_back(tmpIP);
			}
			return;
		}
		string tmp;
		tmp += str[k];
		if(getvalue(tmp)<=255)
		{
			tmpIP += (tmp+'.');
			getAllIP(result, str, tmpIP,k+1 ,i+1);
			tmpIP.pop_back();
			tmpIP.pop_back();
		}
		if(str[k] != '0')
		{
			if(k < len-1)
			{
				tmp += str[k+1];
				if(getvalue(tmp)<=255)
				{
					tmpIP += (tmp+'.');
					getAllIP(result, str, tmpIP, k+2, i+1);
					tmpIP.pop_back();
					tmpIP.pop_back();
					tmpIP.pop_back();
				}
			}
			if(k < len-2)
			{
				tmp += str[k+2];
				if(getvalue(tmp)<=255)
				{
					tmpIP += (tmp+'.');
					getAllIP(result, str, tmpIP, k+3 ,i+1);
					tmpIP.pop_back();
					tmpIP.pop_back();
					tmpIP.pop_back();
					tmpIP.pop_back();
				}
			}
		}
	}
	int getvalue(string s)
	{
		int len = s.length();
		int result = 0;
		for(int i=0; i<len; ++i)
			result = 10*result + s[i]-'0';
		return result;
	}
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值