$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Wang Weiwei (wwwang_at_[hidden])
Date: 2006-07-13 00:25:02
Hello,
I have an undirected graph with several isolated (unconnected) sub-graphs. For example
Vertex {1, 2, 3, 4, 5}
Edge {(1,2), (1,3) (4, 5)}
I want to know what will be the behavior of the search algorithms (such as DFS, BFS, or
undirected_DFS) when I submit a search call with a specified beginning vertex.
As a result, all of the verteces will be visited, or just those topologically connected to the input vertex?
Any help will be appreciated.
Max