Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
_bellman_ford.c
Package: leda.tar.gz [view]
Upload User: gzelex
Upload Date: 2007-01-07
Package Size: 707k
Code Size: 2k
Category:
Mathimatics-Numerical algorithms
Development Platform:
MultiPlatform
- /*******************************************************************************
- +
- + LEDA-R 3.2.3
- +
- + _bellman_ford.c
- +
- + Copyright (c) 1995 by Max-Planck-Institut fuer Informatik
- + Im Stadtwald, 66123 Saarbruecken, Germany
- + All rights reserved.
- +
- *******************************************************************************/
- /*******************************************************************************
- * *
- * BELLMAN FORD *
- * *
- *******************************************************************************/
- #include <LEDA/graph_alg.h>
- #include <LEDA/b_queue.h>
- bool BELLMAN_FORD(const graph& G, node s, const edge_array<num_type>& cost,
- node_array<num_type>& dist,
- node_array<edge>& pred )
- /* single source shortest paths from s using a queue (breadth first search)
- computes for all nodes v:
- a) dist[v] = cost of shortest path from s to v
- b) pred[v] = predecessor edge of v in shortest paths tree
- */
- {
- node_array<int> count(G,0);
- int n = G.number_of_nodes();
- node_list Q;
- node u,v;
- edge e;
- forall_nodes(v,G)
- { pred[v] = 0;
- dist[v] = max_num;
- }
- dist[s] = 0;
- Q.append(s);
- while(! Q.empty() )
- { u = Q.pop();
- if (++count[u] > n) return false; // negative cycle
- num_type du = dist[u];
- forall_adj_edges(e,u)
- { v = target(e);
- num_type c = du + cost[e];
- if (c < dist[v])
- { dist[v] = c;
- pred[v] = e;
- if (!Q.member(v)) Q.append(v);
- }
- }
- }
- return true;
- }