[LeetCode83]Restore IP Addresses
For example: Given
"25525511135"
, return
["255.255.11.135", "255.255.111.35"]
. (Order does not matter) Analysis:
차례로 숫자열을 네 부분으로 나누고 각 부분은 0<=p<=255를 만족시킨다.예를 들어 010은 재미없는 것이다. "0.10.010.1"이다.
Java
public class Solution {
public List<String> restoreIpAddresses(String s) {
List<String> res = getIPAdd(s,4);
if(res == null) res = new ArrayList<>();
return res;
}
public ArrayList<String> getIPAdd(String s, int k){
assert(k<=4 && k>=1);
if(s==null || s.length()<k || s.length()>3*k) return null;
ArrayList<String> res = new ArrayList<>();
for(int i=0;i<Math.min(s.length(), 3);i++){
String num = s.substring(0, i+1);
if((i==0 || num.charAt(0)>'0')&& Integer.parseInt(num)<=255){
if(k==1){
if(i==s.length()-1)
res.add(num);
}else {
ArrayList<String> remain = getIPAdd(s.substring(i+1), k-1);
if(remain!=null){
for(String r:remain){
String temp = num+'.'+r;
res.add(temp);
}
}
}
}else
break;
}
return res;
}
}
c++ class Solution {
public:
/*
s -- string, input
start -- startindex, start from which index in s
step -- step current step index, start from 0, valid value1-4,4 means the end
ip -- intermediate, split result in current spliting process
result -- save all possible ip address
*/
void dfsIp(string s, size_t start, size_t step, string ip,
vector<string> &result){
if(start == s.size() && step == 4){//find a possible result
ip.resize(ip.size()-1);
result.push_back(ip);
return;
}
//since each part of IP address is in 0..255,the leagth of each
// part is less than 3 and more than 0
if(s.size()-start > (4-step)*3) return;
if(s.size()-start < (4-step)) return;
int num=0;
for(size_t i=start;i<start+3;i++){
num = num*10 + (s[i]-'0');
if(num<=255){
ip+=s[i];
dfsIp(s,i+1,step+1,ip+'.',result);
}
if(num == 0) break;
}
}
vector<string> restoreIpAddresses(string s) {
vector<string> result;
string ip; // save temporaty result in processing
dfsIp(s,0,0,ip,result);
return result;
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 문자열 입력으로 모든 유효한 IP 주소 생성(LeetCode 93번 문제)이 문제의 공식 난이도는 Medium으로 좋아요 1296, 반대 505, 통과율 35.4%를 눌렀다.각 항목의 지표로 말하자면 보기에는 약간 규범에 맞는 것 같지만, 실제로도 확실히 그렇다.이 문제의 해법과 의도는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.