93. Restore IP Addresses

本文介绍了一种有效的算法,用于将未格式化的IP地址字符串恢复为标准的点分十进制格式。通过递归方法检查所有可能的组合,确保生成的IP地址段合法且不超过255。该算法考虑了IP地址长度限制,并避免了无效的前导零。
摘要由CSDN通过智能技术生成

Example:

Input: “25525511135”
Output: [“255.255.11.135”, “255.255.111.35”]

class Solution {
    public List<String> restoreIpAddresses(String s) {
    List<String> list = new ArrayList();
    if(s.length() > 12) return list;
      
    helper(s, list, 0, "", 0);  
    return list;
  }
  
  void helper(String s, List<String> list, int pos, String res, int sec){
    if(sec == 4 && pos == s.length()) {
      list.add(res);
      return;
    }  
      
    for(int i = 1; i <= 3; i++){
      if(pos + i > s.length()) break;  
      String section = s.substring(pos, pos + i);
      if(section.length() > 1 && section.startsWith("0") || Integer.parseInt(section) >= 256)  break;
      helper(s, list, pos + i, sec == 0 ? section : res + "." + section, sec + 1);
    }  
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值