Abstract
Breadth First Search (BFS) can calculate the shortest path for un-weighted graphs very efficiently but when it comes to non-negative weighted graphs it fails at a point when a successor updates a predecessor. Such nodes are being referred as Culprit nodes in this research. These Culprit nodes are the ones that cause error in shortest path in an algorithm that traverses like BFS. This research targets on recognizing and marking Culprit nodes to disengage them until they are properly and completely updated. Processing through such nodes is postponed until all possible updates are made on these nodes nullifying all possible chances of errors. As nodes are being traversed in BFS fashion with few violations and additions promising a O(k(|V| + |E|)) time algorithm where 0<k<<log n. More over this algorithm does not need any complex data structure.
Original language | English |
---|---|
Title of host publication | Proceedings of the 2010 Second International Conference on Communication Software and Networks |
Publisher | Institute of Electrical and Electronics Engineers Inc. |
Pages | 223-227 |
Number of pages | 5 |
ISBN (Electronic) | 9781424457274 |
ISBN (Print) | 9781424457267 |
DOIs | |
Publication status | Published - 25 Mar 2010 |
Event | 2nd International Conference on Communication Software and Networks, ICCSN 2010 - Singapore, Singapore Duration: 26 Feb 2010 → 28 Feb 2010 |
Conference
Conference | 2nd International Conference on Communication Software and Networks, ICCSN 2010 |
---|---|
Country/Territory | Singapore |
City | Singapore |
Period | 26/02/10 → 28/02/10 |
Keywords
- algorithm
- component
- linear time
- shortest path
- theoretical computer science
- undirected graphs