0 Daumen
306 Aufrufe

Aufgabe zu Dijkstra Algorithm Networking:

To debug network architectures, it may be necessary to understand which router was used to establish a connection to another computer in the network. For this purpose there are tools such as the program tracert (short for "trace route" or "trace route"), which calculates a list of all routers used on the way to the target computer. For this purpose, characteristics of the common network protocols are used which are not described in detail here. Instead, let's assume an abstract network with the following protocol: If you want to send a packet to a target computer, it is guaranteed to arrive at the target computer on the shortest path. You will receive an answer to each of your packages

- how long your parcel was on its way to the target computer in milliseconds,
- from which computers the target computer can be addressed directly (ie in one step) and
- How many milliseconds a packet needs from these computers to the target computer.

We also assume that a computer that can directly reach another does not have to be directly reachable by this one, so that the communication paths are not necessarily bidirectional. We also assume that the latency from one computer to the next is consistently greater than 0 throughout the entire execution and that the network is contiguous.

1. Describe an algorithm which, given a target computer \( t \) in the network, outputs a complete shortest path for your packet to the target computer t. Also enter a corresponding pseudocode in which you can use the function sendPackage \( (x) \) to send a packet to computer \( x \) and receive the response as a tuple \( (d, Y, T) \), where \( d \) is the required time in milliseconds until the target computer is, \( Y \) are the computers that can reach \( x \) directly and \( T \) are the transmission times of packets from computers in \( Y \) to \( x \).

2. Transfers in the network are usually much slower than operations on the CPU. The total runtime is therefore likely to be dominated by the transmission time in the network. Enter a change to the protocol or more specifically to sendePaket \( (x) \), with which the number of transmission times required in the network could be reduced. The improvement does not have to have any influence on the asymptotic running time.

Avatar von

1 Antwort

0 Daumen

Sende ein Packet an t. Merke dir die Laufzeit \(d\) und die Laufzeiten \(T_i\).

Sende ein Packet an jeden Rechner \(Y_i\in Y\), von dem aus t direkt erreichbar ist. Merke dir die Laufzeiten \(d_i\) von deinem Rechner zu den Rechner \(Y_i\).

Ist \(d_i + T_i = d\), dann ist dein erstes Packet über \(Y_i\) nach t gelangt.

Wiederhole diese Prozedur mit \(t = Y_i\) bis dein Rechner in der Liste \(Y\) auftaucht.

Avatar von 5,6 k

Ein anderes Problem?

Stell deine Frage

Ähnliche Fragen

0 Daumen
0 Antworten
0 Daumen
1 Antwort
0 Daumen
1 Antwort

Willkommen bei der Stacklounge! Stell deine Frage einfach und kostenlos

x
Made by a lovely community