暴力解法三次for循环,每次截取字符串转为int判断在不在0-255之间,若字符串长度大于1,那么字符串第一位不能是0 public class Solution { /** * * @param s string字符串 * @return string字符串ArrayList */ public ArrayList<String> restoreIpAddresses (String s) { ArrayList<String> arr = new ArrayList<Stri...