-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathGraph_Valid_Tree.cpp
37 lines (35 loc) · 1.1 KB
/
Graph_Valid_Tree.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class Solution {
public:
bool isTree(int parent, int node, vector<vector<int> >& adj, vector<bool>& visited) {
visited[node] = true;
for(int i = 0; i < (int) adj[node].size(); ++i) {
if(adj[node][i] != parent) {
int child = adj[node][i];
if(visited[child]) {
return false;
}
if(!isTree(node, child, adj, visited)) {
return false;
}
}
}
return true;
}
bool validTree(int n, vector<pair<int, int>>& edges) {
vector<vector<int> > adj (n, vector<int>());
for(int i = 0; i < edges.size(); ++i) {
int u = edges[i].first;
int v = edges[i].second;
adj[u].push_back(v);
adj[v].push_back(u);
}
vector<bool> visited(n, false);
bool isValidTree = isTree(-1, 0, adj, visited);
if(isValidTree) for(int i = 0; i < n; ++i) {
if(!visited[i]) {
return false;
}
}
return isValidTree;
}
};