Почему необходимо передавать вектор anc по ссылке в функции dfs?
#graph #depth-first-search #cycle Вопрос: class Solution { public: //Function to detect cycle in a directed graph. bool dfs(int V, vector<int> adj[],vector <bool>amp; isvis,int start,vector<bool>**amp;**anc) { isvis[start]=1; anc[start]=true; for(auto nb :…