Finding the shortest paths by node combination

作者:

Highlights:

摘要

By repeatedly combining the source node’s nearest neighbor, we propose a node combination (NC) method to implement the Dijkstra’s algorithm. The NC algorithm finds the shortest paths with three simple iterative steps: find the nearest neighbor of the source node, combine that node with the source node, and modify the weights on edges that connect to the nearest neighbor. The NC algorithm is more comprehensible and convenient for programming as there is no need to maintain a set with the nodes’ distances. Experimental evaluations on various networks reveal that the NC algorithm is as efficient as Dijkstra’s algorithm. As the whole process of the NC algorithm can be implemented with vectors, we also show how to find the shortest paths on a weight matrix.

论文关键词:Shortest path,Node combination,Node combination algorithm,Dijkstra’s algorithm,Weight matrix

论文评审过程:Available online 11 January 2011.

论文官网地址:https://doi.org/10.1016/j.amc.2011.01.019