How can i tell if this algorithm has already been invented?
The algorithm:
take the end node, set it's calculated cost to end to zero, and add it to a list of nodes who's neighbors need checking
while we aren't done do this
for each node in the list to check, do this
the calculated cost is the cost it takes to get to the node who's neighbor we are considering plus the cost of traveling from that node to this node
if this node doesnt already have a calculated cost for getting to the endpoint
add it to the list of nodes to check
add a mark on the node indicating the calculated cost
otherwise,
if the new calculated cost is below the one already on this node
add it to the list of nodes to check
mark the route cost entry with the new cost
if there are no more nodes to check then
we are done with this loop
ready a queue of nodes
keep a current node in mind and set it to the start node for now
while we aren't at the end node do
for each node in the current node's neighbors, do this
keep a best node in mind and set it to the current one right now
and also keep best cost in mind and set it to infinity for now
if the neighbor has a listing for our end node then
if the calculated cost for getting to the end from the neighbor plus the cost of going from the current node to the neighbor is lower than the best cost
if we haven't already been to this node before
set this neighbor as the best node
set this calculated cost as the best one
add the current node to our list of nodes
set our current node to the best found node
add the end node to the list
we're done
