//# DFS-graph- void DFS(int s, bool Visited[]){ if (Visited[s]==true) return; Visited[s]=true; cout<<s<<" "; for (auto it=ll[s].begin();it!=ll[s].end();it++) DFS(*it,Visited);
}
void DFS(int s){
bool Visited[V];
for (int i=0;i<V;i++) Visited[i]=false;
DFS(s,Visited);
}