Restore IP Addresses

本文介绍了一种通过递归深度优先搜索实现的算法,该算法能够将由纯数字组成的字符串恢复为所有可能的有效IP地址组合。例如,对于输入25525511135,算法能返回[255.255.11.135255.255.111.35]等有效IP地址。

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)

 

public class Solution {
    public List<String> restoreIpAddresses(String s) {
    	List<String> res = new ArrayList<>();
        String temp = new String();
        if (s.length()<4 || s.length()>12) {
        	return res;
        }
        dfs(res, temp, 0, s);
        return res;
    }

	private void dfs(List<String> res, String temp, int index, String s) {
		if (index==3 && isValid(s)) {
			res.add(temp+s);
			return;
		}
		for (int i = 0; i<3 && i<s.length()-1; i++) {
			String substring = s.substring(0, i+1);
			if (isValid(substring)) {
				dfs(res, temp+substring+'.', index+1, s.substring(i+1, s.length()));
			}
		}
	}

	private boolean isValid(String s) {
		if (s.charAt(0) == '0') {
			return s.equals("0");
		}
		int temp = Integer.parseInt(s);
		if (temp<=255 && temp>0) {
			return true;
		} else {
			return false;
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值