views:

262

answers:

5

What are some real life examples where each one of these are used?

A: 

Bellman-Ford + Djikstra: Shortest paths, navigational systems.

Prim's + Kruskal: Minimum spanning trees, used for example in approximating the famous-infamous Traveling Salesman Problem.

phimuemue
A: 

Prim, Kruskals - Network Spanning Tree Protocol

Dijkstra - GPS Maps and routing eg. Maps Google.

DAG - For easy implement tree hierarchy.

Bellman-Ford - RIP (Routing Information Protocol)

Svisstack
+1  A: 

In router for making routing decisions.

A: 

Dijkstra's algorithm (see Wikipedia) is a path-finding algorithm. It is used to find shortest paths through graphs, e.g. for maps and for game AI (e.g. finding an efficient route when you or the computer tell troops to go from point A to point B).

A popular improved version of the algorithm is the A* search algorithm.

Brian
+1  A: 

Dijkstra's algorithm, on every other question tagged algorithm on stackoverflow

BlueRaja - Danny Pflughoeft