-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Depth First Search #2814
Comments
can you please assign this issue to me ? |
okayy |
assign this me to me please under hacktober tag |
assign this to me |
This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Depth-First Search is a pretty important algorithm, I feel like this work item would stand the test of time, no? Or do you mark issues as stale automatically specifically for repo hygiene? |
Detailed description
There is a problem on depth first search so i want to create and push my own code
Context
Other users use my code and help them to understand
Possible implementation
#include<bits/stdc++.h>
using namespace std;
vector vis;
vector<vector> g;
void dfs(int node) {
vis[node] = 1;
}
int main() {
int n, m;
cin >> n >> m;
}
Additional information
No response
The text was updated successfully, but these errors were encountered: