- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
_dfsnum.c
资源名称:leda.tar.gz [点击查看]
上传用户:gzelex
上传日期:2007-01-07
资源大小:707k
文件大小:2k
源码类别:
数值算法/人工智能
开发平台:
MultiPlatform
- /*******************************************************************************
- +
- + LEDA-R 3.2.3
- +
- + _dfsnum.c
- +
- + Copyright (c) 1995 by Max-Planck-Institut fuer Informatik
- + Im Stadtwald, 66123 Saarbruecken, Germany
- + All rights reserved.
- +
- *******************************************************************************/
- /*******************************************************************************
- * *
- * DFS_NUM (depth first search numbering) *
- * *
- *******************************************************************************/
- #include <LEDA/graph_alg.h>
- static int dfs_count1,dfs_count2;
- static void dfs(node v, node_array<bool>& reached,
- node_array<int>& dfsnum,
- node_array<int>& compnum,
- list<edge>& T )
- { node w;
- edge e;
- reached[v] = true;
- dfsnum[v] = ++dfs_count1;
- forall_adj_edges(e,v)
- { w = target(e);
- if (!reached[w])
- { T.append(e);
- dfs(w,reached,dfsnum,compnum,T);
- }
- }
- compnum[v] = ++dfs_count2;
- }
- list<edge> DFS_NUM(const graph& G, node_array<int>& dfsnum,
- node_array<int>& compnum)
- {
- list<edge> T;
- node_array<bool> reached(G,false);
- node v;
- dfs_count1 = dfs_count2 = 0;
- forall_nodes(v,G) if (!reached[v]) dfs(v,reached,dfsnum,compnum,T);
- return T;
- }