The Shortest-Route Problem+ Trying to find the shortest route from a source or a destination through a connecting network+ The destination  may be in any other node in the network.+ This the problem faced by any organization that delivers or picks up material from a number of points.
Shortest-Route AlgorithmConstruct a list for each node in the network of the branches leading out of that node.Each branch is identified by a two-letter symbol;1st letter is the node a branch leaves from andThe  2nd letter is the node it goes to.Directly beside the symbol indicate the length of that branch.Arrange the branches in ascending order of the branch lengths. Table 16-10 BRANCHES LEADING OUT OF EACH NODE IN SHORTEST-ROUTE NETWORK
Step 1. Identify branches that lead away from the origin. Select which of the branches is the shortest.
Step 2. Choose the 2nd nearest nodes to the Origin , those nearest A and B.
Step 3. Choose the 3rd nearest nodes to the Origin, those nearest B and C
Step 4. Choose the 4th nearest route from the Origin, those Nearest C and D
Step 5. Choose the 5th Nearest node from Origin, those nearest D and E. 200150

The Shortest Route Problem

  • 1.
    The Shortest-Route Problem+Trying to find the shortest route from a source or a destination through a connecting network+ The destination may be in any other node in the network.+ This the problem faced by any organization that delivers or picks up material from a number of points.
  • 2.
    Shortest-Route AlgorithmConstruct alist for each node in the network of the branches leading out of that node.Each branch is identified by a two-letter symbol;1st letter is the node a branch leaves from andThe 2nd letter is the node it goes to.Directly beside the symbol indicate the length of that branch.Arrange the branches in ascending order of the branch lengths. Table 16-10 BRANCHES LEADING OUT OF EACH NODE IN SHORTEST-ROUTE NETWORK
  • 3.
    Step 1. Identifybranches that lead away from the origin. Select which of the branches is the shortest.
  • 4.
    Step 2. Choosethe 2nd nearest nodes to the Origin , those nearest A and B.
  • 5.
    Step 3. Choosethe 3rd nearest nodes to the Origin, those nearest B and C
  • 6.
    Step 4. Choosethe 4th nearest route from the Origin, those Nearest C and D
  • 7.
    Step 5. Choosethe 5th Nearest node from Origin, those nearest D and E. 200150

Editor's Notes

  • #3 The process that we will be using fans out from the origin (node A), identifying the shortest route to each of the nodes in the network in the ascending order of their distances from the origin. Let’s begin by finding the nearest nodes to the origin.