SimpleRouter: the problem铪

来源:互联网 发布:程序员需要学多久 编辑:程序博客网 时间:2024/05/02 02:15
Problem Statement

A router's job is to route packets of information to the correct computer. In addition, a router may throw out some packets, or handle the packets on its own. In this problem, you are to implement the software for a simple, rule-based router. Each rule in the router will take one of the following forms (quotes and angle brackets for clarity only):

"ACCEPT "
"REJECT "
"FORWARD ()"

Each is a string of exactly four s, separated by periods, and each consists of a single . A can take one of three forms. It may be a single integer, a range of integers (in the form "-", where both limits are inclusive), or an asterisk. consists of exactly 4 integers, with 3 periods separating them (an IP address). If a FORWARD rule has a with only a single integer, then the may optionally be followed by a single integer, .  Each rule tells the router what to do with a packet of information if that packet comes from an IP in the rule's and to a port in the rule's . An IP is in the if each in the matches the corresponding number in the IP. A matches a number, N, if the is an asterisk, if it is a single number that is the same as N, or if it is a range and N falls within the range, inclusive. The rules for matching a are the same.  If a rule tells the router to forward the packet, then it should be forwarded to . If no is specified, the packet should be forwarded to the same port it was received on. Otherwise, it should be forwarded to the specified port. If multiple rules apply to a packet, you should use the one that comes last in the input. If no rules apply, REJECT the packet.  You will be given a String[], rules, representing a number of rules that the router is to follow. You will also be given a String[], packets, each of whose elements represents a packet of data in the form " " ( is formatted the same as ). You should return a String[] with one element per packet, specifying what to do with the packet with the same index in the input as the return. Each element of the return should be either "ACCEPT", "REJECT", or ":", where and represent the location to which the packet should be forwarded.
Definition

Class:
SimpleRouter
Method:
route
Parameters:
String[], String[]
Returns:
String[]
Method signature:
String[] route(String[] rules, String[] packets)
(be sure your method is public)


Notes
-
While the input may have extraneous leading zeros, your return should not.
Constraints
-
rules will contain between 1 and 50 elements, inclusive.
-
Each element of rules will be formatted as described in the problem statement.
-
packets will contain between 1 and 50 elements, inclusive.
-
Each element of packets will be formatted as described in the problem statement.
-
Each of the four numbers in an IP address, or a number range in an IP address will be between 0 and 255, inclusive.
-
Each port or number in a port range will be between 1 and 65535 inclusive.
-
In any with two numbers, will be less than or equal to .
Examples
0)


{"FORWARD 192.168.000.* 001-100 192.168.0.10",
 "FORWARD 192.168.0.1 80 10.10.95.184 8080",
 "ACCEPT 192.168.*.* 25",
 "REJECT 192.168.5.38 *"}
{"192.168.0.43 80",
 "00192.00168.000.001 00080",
 "192.168.0.1 110",
 "192.168.1.73 80",
 "192.168.1.73 25",
 "206.26.210.5 53",
 "192.168.5.38 25"
 }
Returns:
{ "192.168.0.10:80",
  "10.10.95.184:8080",
  "REJECT",
  "REJECT",
  "ACCEPT",
  "REJECT",
  "REJECT" }
Packet 0 matches rule 0, and gets forwarded according to that rule. Packet 1 matches both rules 0 and 1, so rule 1 is applied. Packets 2, 3, and 5 don't match any rules, so they are rejected. Packet 4 matches rule 2, and is therefore accepted. Packet 6 matches rules 2 and 3, so it gets rejected (rule 3 is applied).

1)

{"FORWARD *.*.*.* * 192.168.0.1"}
{"213.148.161.82 9484",
 "172.230.108.145 16627",
 "122.141.122.130 46874",
 "241.145.145.77 26390",
 "139.97.106.125 35305",
 "244.131.151.77 26390"}
Returns:
{ "192.168.0.1:9484",
  "192.168.0.1:16627",
  "192.168.0.1:46874",
  "192.168.0.1:26390",
  "192.168.0.1:35305",
  "192.168.0.1:26390" }

2)

{"REJECT *.20-252.114-157.36-91 13171-54085",
 "ACCEPT *.*.73-180.* *",
 "FORWARD 55.63.173.239 * 168.154.33.25",
 "REJECT *.72-73.*.48-191 *",
 "REJECT 20.51.*.* 4579",
 "ACCEPT 70-166.*.*.86-182 *",
 "REJECT 88-190.*.119-157.* 3316-27844",
 "FORWARD *.52-221.134-250.66-207 * 116.94.120.82"}
{"203.11.104.45 44072",
 "154.92.128.87 30085",
 "20.51.68.55 4579",
 "177.73.138.69 14319",
 "112.65.145.82 26287",
 "55.63.173.239 45899"}
Returns:
{ "ACCEPT",
  "ACCEPT",
  "REJECT",
  "116.94.120.82:14319",
  "116.94.120.82:26287",
  "168.154.33.25:45899" }


原创粉丝点击