題目
編寫一個(gè)函數(shù)來驗(yàn)證輸入的字符串是否是有效的 IPv4 或 IPv6 地址。
IPv4 地址由十進(jìn)制數(shù)和點(diǎn)來表示,每個(gè)地址包含4個(gè)十進(jìn)制數(shù),其范圍為 0 - 255号阿, 用(".")分割。比如鸳粉,172.16.254.1扔涧;
同時(shí),IPv4 地址內(nèi)的數(shù)不會(huì)以 0 開頭届谈。比如枯夜,地址 172.16.254.01 是不合法的。
IPv6 地址由8組16進(jìn)制的數(shù)字來表示艰山,每組表示 16 比特湖雹。這些組數(shù)字通過 (":")分割。比如, 2001:0db8:85a3:0000:0000:8a2e:0370:7334 是一個(gè)有效的地址曙搬。而且摔吏,我們可以加入一些以 0 開頭的數(shù)字,字母可以使用大寫纵装,也可以是小寫征讲。所以, 2001:db8:85a3:0:0:8A2E:0370:7334 也是一個(gè)有效的 IPv6 address地址 (即橡娄,忽略 0 開頭诗箍,忽略大小寫)。
然而瀑踢,我們不能因?yàn)槟硞€(gè)組的值為 0扳还,而使用一個(gè)空的組,以至于出現(xiàn) (::) 的情況橱夭。 比如, 2001:0db8:85a3::8A2E:0370:7334 是無效的 IPv6 地址桑逝。
同時(shí)棘劣,在 IPv6 地址中,多余的 0 也是不被允許的楞遏。比如茬暇, 02001:0db8:85a3:0000:0000:8a2e:0370:7334 是無效的首昔。
說明: 你可以認(rèn)為給定的字符串里沒有空格或者其他特殊字符。
示例 1:
輸入: "172.16.254.1"
輸出: "IPv4"
解釋: 這是一個(gè)有效的 IPv4 地址, 所以返回 "IPv4"糙俗。
示例 2:
輸入: "2001:0db8:85a3:0:0:8A2E:0370:7334"
輸出: "IPv6"
解釋: 這是一個(gè)有效的 IPv6 地址, 所以返回 "IPv6"勒奇。
示例 3:
輸入: "256.256.256.256"
輸出: "Neither"
解釋: 這個(gè)地址既不是 IPv4 也不是 IPv6 地址。
C++解法
#include <iostream>
#include <vector>
#include <map>
#include <set>
using namespace std;
class Solution {
public:
string validIPAddress(string IP) {
bool ipv4 = false;
bool ipv6 = false;
int numberOfPart = 0;
string str;
for (int i = 0; i < IP.size(); i++) {
auto c = IP[i];
if (isalnum(c)) {
str.push_back(c);
} else {
if (!ipv4 && !ipv6) {
if (c == ':') ipv6 = true;
if (c == '.') ipv4 = true;
} else if ((c == ':' && ipv4) || (c == '.' && ipv6)) {
return "Neither";
}
if (i == IP.size() - 1) return "Neither";
++numberOfPart;
}
if (!isalnum(c) || i == IP.size() - 1) {
if (str.empty()) return "Neither";
if (ipv4) {
if (str.size() > 3 || (str.size() > 1 && str[0] == '0')) return "Neither";
int num = 0;
for (auto t: str) {
num *= 10;
int val = t - '0';
if (val < 0 || val > 9) { return "Neither"; }
num += val;
}
if (num < 0 || num > 255) { return "Neither"; }
} else {
if (str.size() > 4) return "Neither";
for (auto t: str) {
bool valid = (t >= '0' && t <= '9') || (t >= 'A' && t <= 'F') || (t >= 'a' && t <= 'f');
if (!valid) return "Neither";
}
}
str.clear();
}
}
if (ipv4 && numberOfPart == 3) return "IPv4";
if (ipv6 && numberOfPart == 7) return "IPv6";
return "Neither";
}
};
int main(int argc, const char * argv[]) {
// insert code here...
Solution solution;
cout << solution.validIPAddress("2001:0db8:85a3:0:0:8A2E:0370:7334") << endl;
cout << solution.validIPAddress("256.256.256") << endl;
cout << solution.validIPAddress("172.16.254.1") << endl;
cout << solution.validIPAddress("02001:0db8:85a3:0000:0000:8a2e:0370:7334") << endl;
cout << solution.validIPAddress("2001:0db8:85a3:0:0:8A2E:0370:7334:") << endl;
return 0;
}
來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/validate-ip-address