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
_topsort.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
- +
- + _topsort.c
- +
- + Copyright (c) 1995 by Max-Planck-Institut fuer Informatik
- + Im Stadtwald, 66123 Saarbruecken, Germany
- + All rights reserved.
- +
- *******************************************************************************/
- /*******************************************************************************
- * *
- * TOPSORT (topological sorting) *
- * *
- *******************************************************************************/
- #include <LEDA/graph_alg.h>
- bool TOPSORT(const graph& G, node_array<int>& ord)
- {
- node_array<int> INDEG(G,0);
- node_list ZEROINDEG;
- int count=0;
- node v,w;
- forall_nodes(v,G) if ((INDEG[v]=indeg(v))==0) ZEROINDEG.append(v);
- while (!ZEROINDEG.empty())
- { v = ZEROINDEG.pop();
- ord[v] = ++count;
- forall_adj_nodes(w,v)
- if (--INDEG[w]==0) ZEROINDEG.append(w);
- }
- if (count==G.number_of_nodes())
- return(true);
- else
- return(false);
- }
- // TOPSORT1 rearrange nodes and edges
- bool TOPSORT1(graph& G)
- {
- if (G.number_of_nodes()==0 || G.number_of_edges()==0) return true;
- node_array<int> node_ord(G);
- edge_array<int> edge_ord(G);
- if (TOPSORT(G,node_ord))
- { edge e;
- forall_edges(e,G) edge_ord[e] = node_ord[target(e)];
- G.sort_nodes(node_ord);
- G.sort_edges(edge_ord);
- return true;
- }
- else return false;
- }