首页 > 代码库 > 93. Restore IP Addresses
93. 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)
分析: 主要是validate的问题。
public class Solution { public List<String> restoreIpAddresses(String s) { List<String> res = new ArrayList<>(); String item = new String(); dfs(res, item , 0 , s); return res; } public void dfs(List<String> res , String item, int deep , String s){ if(deep == 3 && isValid(s)){ res.add(item + s); return; } for(int i = 0 ; i < 3 && i < s.length() ; i++){ String sub = s.substring(0 , i+1); if(isValid(sub)){ dfs(res , item + sub + ".", deep+1, s.substring(i+1, s.length())); } } } public boolean isValid(String s){ if(s.charAt(0) == ‘0‘) return s.equals("0"); int num = Integer.parseInt(s); if(num > 0 && num < 255) return true; return false; } }
93. Restore IP Addresses
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。