题解 | 合法IP

合法IP

https://www.nowcoder.com/practice/995b8a548827494699dc38c3e2a54ee9

笑死 照着测试案例试出来的 排除个两三种情况直接就过了

#include <iostream>
#include <bits/stdc++.h>
using namespace std;

bool is_legal(string s) {
    if(s.size() > 1 && s[0] == '0') return false; //排除01、02这种不合法数字
    for(const char& c: s) {
        if(!isdigit(c)) return false; //排除含有不是数字的字符 例如排除+2 +3
    }
    return true; 
}

int main() {
    string ip;
    cin >> ip;
    stringstream ss(ip);
    vector<int> nums;
    string token;
    while(getline(ss, token, '.')) {
        if(token.empty()) { //排除字符为空的情况例如".1.2.3" 第一个字符token就是空
            cout << "NO" << endl;
            return 0;
        }
        if(!is_legal(token)) {
            cout << "NO" << endl;
            return 0;
        }
        nums.push_back(stoi(token));
    }
    if(nums.size() != 4) {
        cout << "NO" << endl;
        return 0;
    }
    for(const int& n: nums) {
        if(n < 0 || n > 255) {
            cout << "NO" << endl;
            return 0;
        }
    }
    cout << "YES" << endl;
    return 0;
}

全部评论

相关推荐

无一技之长怎么办:别去右边,售前,实施,需求分析一起,这是把人当牛马用啊,快跑,这些岗位天花板很低的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务