LeetCode - Medium - Validate IP Addres

Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither.

IPv4 addresses are canonically represented in dot-decimal notation, which consists of four decimal numbers, each ranging from 0 to 255, separated by dots ("."), e.g.,172.16.254.1;

Besides, leading zeros in the IPv4 is invalid. For example, the address 172.16.254.01 is invalid.

IPv6 addresses are represented as eight groups of four hexadecimal digits, each group representing 16 bits. The groups are separated by colons (":"). For example, the address 2001:0db8:85a3:0000:0000:8a2e:0370:7334 is a valid one. Also, we could omit some leading zeros among four hexadecimal digits and some low-case characters in the address to upper-case ones, so 2001:db8:85a3:0:0:8A2E:0370:7334 is also a valid IPv6 address(Omit leading zeros and using upper cases).

However, we don't replace a consecutive group of zero value with a single empty group using two consecutive colons (::) to pursue simplicity. For example, 2001:0db8:85a3::8A2E:0370:7334 is an invalid IPv6 address.

Besides, extra leading zeros in the IPv6 is also invalid. For example, the address 02001:0db8:85a3:0000:0000:8a2e:0370:7334 is invalid.

Note: You may assume there is no extra space or special characters in the input string.

Example 1:

Input: "172.16.254.1"

Output: "IPv4"

Explanation: This is a valid IPv4 address, return "IPv4".

Example 2:

Input: "2001:0db8:85a3:0:0:8A2E:0370:7334"

Output: "IPv6"

Explanation: This is a valid IPv6 address, return "IPv6".

Example 3:

Input: "256.256.256.256"

Output: "Neither"

Explanation: This is neither a IPv4 address nor a IPv6 address.

thinking

  1. regular expression
  2. lexical analysis

solution

regular expression

public class ValidateIPAddress {
	public static final String from0To255Regex = "(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])";
	public static final String IPv4Regex = "(" + from0To255Regex + "\\.){3}" + from0To255Regex;
	public static final String from0ToFfffRegex = "([0-9A-Fa-f]{1,4})";
	public static final String IPv6Regex = "(" + from0ToFfffRegex + ":){7}" + from0ToFfffRegex;

	// 用正则表达式
	public String validIPAddress(String IP) {
		if (IP.matches(IPv4Regex)) {
			return "IPv4";
		}

		if (IP.matches(IPv6Regex)) {
			return "IPv6";
		}

		return "Neither";
	}

	@//Test
	public void testFrom0To255Regex() {
		Assert.assertTrue("255".matches(from0To255Regex));
		Assert.assertTrue("249".matches(from0To255Regex));
		Assert.assertTrue("199".matches(from0To255Regex));
		Assert.assertFalse("256".matches(from0To255Regex));
		Assert.assertFalse("01".matches(from0To255Regex));
		Assert.assertTrue("0".matches(from0To255Regex));
		Assert.assertTrue("249.2".matches(from0To255Regex + "\\." + from0To255Regex));
	}

	@//Test
	public void testFrom0ToFfffRegex() {
		Assert.assertTrue("0".matches(from0ToFfffRegex));
		Assert.assertTrue("0000".matches(from0ToFfffRegex));
		Assert.assertTrue("FFFF".matches(from0ToFfffRegex));
		Assert.assertTrue("ffff".matches(from0ToFfffRegex));
		Assert.assertTrue("0fff".matches(from0ToFfffRegex));
	}

	@//Test
	public void test() {
		Assert.assertEquals("IPv4", validIPAddress("172.16.254.1"));
		Assert.assertEquals("Neither", validIPAddress("172.16.254.01"));
		Assert.assertEquals("Neither", validIPAddress("256.256.256.256"));
		Assert.assertEquals("IPv6", validIPAddress("2001:0db8:85a3:0000:0000:8a2e:0370:7334"));
		Assert.assertEquals("IPv6", validIPAddress("2001:0db8:85a3:0:0:8A2E:0370:7334"));
		Assert.assertEquals("Neither", validIPAddress("2001:0db8:85a3::8A2E:0370:7334"));
		Assert.assertEquals("Neither", validIPAddress("02001:0db8:85a3::8A2E:0370:7334"));
	}
}

lexical analysis

private boolean isIpV4(String ip) {
	if (ip == null || ip.isEmpty()) {
		return false;
	}
	String[] splits = ip.split("\\.", -1);
	if (splits.length != 4)
		return false;
	for (int i = 0; i < 4; i++) {
		try {
			int val = Integer.parseInt(splits[i], 10);
			if (val < 0 || val > (1 << 8) - 1)
				return false;
		} catch (Exception e) {
			return false;
		}
		if (splits[i].charAt(0) == '-' || splits[i].charAt(0) == '+')
			return false;
		if (splits[i].charAt(0) == '0' && splits[i].length() > 1)
			return false;
	}
	return true;
}

private boolean isIpV6(String ip) {
	if (ip == null || ip.isEmpty()) {
		return false;
	}
	String[] splits = ip.split(":", -1);
	if (splits.length != 8)
		return false;
	for (int i = 0; i < 8; i++) {
		try {
			int val = Integer.parseInt(splits[i], 16);
			if (val < 0 || val > (1 << 16) - 1)
				return false;
		} catch (Exception e) {
			return false;
		}
		if (splits[i].charAt(0) == '-' || splits[i].charAt(0) == '+')
			return false;
		if (splits[i].length() > 4)
			return false;
	}
	return true;
}

public String validIPAddress2(String IP) {
	if (isIpV4(IP)) {
		return "IPv4";
	} else if (isIpV6(IP)) {
		return "IPv6";
	} else {
		return "Neither";
	}
}

reference

Validate IP Address

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324440680&siteId=291194637