...

/

Feature #6: Transmission Error

Feature #6: Transmission Error

Description

In our network protocol, response packets take the same route (in reverse) back to the source as the request packet did to the destination. Sometimes the path may differ due to errors, and we can tolerate at most one diversion router. The path, in terms of IDs of routers along the way, is recorded in a list present inside the packet. We need to identify the paths with more than one diversion router, so our topology remains intact and transmission error occurs.

We’ll be provided with a list of integers representing the router IDs. The routers at the start and end of the path will always be the same. The first half of the list will show the request packet’s path from source to the destination, while the second half will show the response packet’s path from the destination back to the source. We need to determine whether the same path is followed from source to destination and from destination to source, except for possibly one additional router ID in either the request or response packet’s paths.

The following illustration might clarify this behavior:

Solution

From the above examples, we can see that if we move towards the middle from each end of the list, the elements at each of those ends are the same. This is the definition of a palindromic sequence. Since our topology allows one diversion router, we can check for the first ...

Access this course and 1200+ top-rated courses and projects.

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy