Explanation : As per question, we have to count average hops
per message.
Steps used:
1) Message goes up from sender to root.
2) Message comes down from root to destination
1) Average hops message goes to root – ((3 * 8) +
(2 * 4) + (1 * 2) + (0 * 1))/15 = 2.267
// 3 * 8 means represents 3 hops & 8 routers for
Bottom most level & So on.
2) Similarly average hops when message comes
down -
((3 * 8) + (2 * 4) + (1 * 2) + (0 * 1))/15 = 2.267
So, Total Hops = 2.267 + 2.267 = 4.53.