open_in_new
content_copy
void DFS( int v){ Thăm_Đỉnh(v); chuaxet[v]:= FALSE; for ( u ∈ke(v) ) { if (chuaxet[u] ) DFS(u); } }