answersLogoWhite

0


Best Answer

yes

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is shortest path routing algorithm adaptive?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Non adaptive routing algorithm?

Answer: shortest path routing


Which routing protocol depends on the DUAL algorithm to calculate the shortest path to a destination?

Which routing protocol depends on the DUAL algorithm to calculate the shortest path to a destination


Implement the Dijkstras shortest path routing algorithm and submit the code listing with proper documentation?

#include


Which algorithm is run by link-state routing protocols to calculate the shortest path to destination networks?

Dijkstra


What is Dijkstra's algorithm?

Dijkstra's algorithm is used by the OSPF and the IS-IS routing protocols. The last three letters in OSPF (SPF) mean "shortest path first", which is an alternative name for Dijkstra's algorithm.


What does the Cisco IOS use to calculate the OSPF cost to a destination network?

OSPF stands for open shortest path first. OSPF is an exterior routing protocol. OSPF uses Path vector routing algorithm.


What is the Dijkstra's algorithm?

Dijkstra's algorithm has importance when you are trying to find the shortest path between two points. It's used in the computer networking field where routing protocols, like OSPF, uses it to find the shortest path between routers. http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm


What two names refer to the same algorithm used by all link-state routing protocols?

Link-state routing algorithms, also known as shortest path first (SPF) algorithms.


Why you are using conditional shortest path routing in delay tolerant networks?

for finding the shortest path


Why is dijkstra's algorithm not suitable for distributed applications with large number of distributed nodes?

"OSPF detects changes in the topology, such as link failures, very quickly and converges on a new loop-free routing structure within seconds. It computes the shortest path tree for each route using a method based on Dijkstra's algorithm, a shortest path first algorithm."


Which is the best shortest path algorithm?

dijkstra's algorithm (note* there are different kinds of dijkstra's implementation) and growth graph algorithm


Where we can use dijkstra's algorithm?

A practical application is in certain routing protocols, like OSPF. The problem it solves is to search for the "shortest" path to each destination - "shortest" meaning the one that has the lowest "distance" or "metric" according to the criteria used. Dijkstra's algorithm is easy to use and is a good graph search algorithm to use when it is hard to calculate the heuristics.