Depth First Search (DFS) by Stack in C++ Add Comment Edit #include <bits/stdc++.h> using namespace std; vector<int>edges[100]; stack<int>q; vector<int>item; int level[... Read More
DFS Algorithm in Bangla (ডিএফএস রিকার্শন (DFS Recursion) ) Add Comment Edit ডিএফএস (Depth First Search) হল গ্রাফ ট্রাভার্স করার এক ধরনের পদ্ধতি । নাম শুনেই বুজতে পারছি যে এক্ষেত্রে গ্রাফ এর গভী... Read More
SPOJ GraCon Connectivity Add Comment Edit #include <bits/stdc++.h> using namespace std; vector<long long int>edges [ 100 ] ; vector<long long int>resul... Read More