- void DFS(){
- for(int v = 1; v <= n; v = v+1){
- if(visited[v] == false)
- DFS_visit(v);
- }
- }
SHARE
TWEET
Untitled
a guest
Apr 27th, 2012
29
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RAW Paste Data

