未验证 提交 36f1d332 编写于 作者: F Filip Hlasek 提交者: GitHub

fix: linter for kosaraju (#1035)

* fix: linter for kosaraju

* update doxygen parameters
上级 91ce393c
...@@ -4,77 +4,84 @@ ...@@ -4,77 +4,84 @@
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include <stack>
using namespace std;
/** /**
* Iterative function/method to print graph: * Iterative function/method to print graph:
* @param a[] : array of vectors (2D) * @param a adjacency list representation of the graph
* @param V : vertices * @param V number of vertices
* @return void * @return void
**/ **/
void print(vector<int> a[], int V) { void print(const std::vector< std::vector<int> > &a, int V) {
for (int i = 0; i < V; i++) { for (int i = 0; i < V; i++) {
if (!a[i].empty()) if (!a[i].empty()) {
cout << "i=" << i << "-->"; std::cout << "i=" << i << "-->";
for (int j = 0; j < a[i].size(); j++) cout << a[i][j] << " "; }
if (!a[i].empty()) for (int j : a[i]) {
cout << endl; std::cout << j << " ";
}
if (!a[i].empty()) {
std::cout << std::endl;
}
} }
} }
/** /**
* //Recursive function/method to push vertices into stack passed as parameter: * //Recursive function/method to push vertices into stack passed as parameter:
* @param v : vertices * @param v vertices
* @param &st : stack passed by reference * @param st stack passed by reference
* @param vis[] : array to keep track of visited nodes (boolean type) * @param vis array to keep track of visited nodes (boolean type)
* @param adj[] : array of vectors to represent graph * @param adj adjacency list representation of the graph
* @return void * @return void
**/ **/
void push_vertex(int v, stack<int> &st, bool vis[], vector<int> adj[]) { void push_vertex(int v, std::stack<int> *st, std::vector<bool> *vis, const std::vector< std::vector<int> > &adj) {
vis[v] = true; (*vis)[v] = true;
for (auto i = adj[v].begin(); i != adj[v].end(); i++) { for (auto i = adj[v].begin(); i != adj[v].end(); i++) {
if (vis[*i] == false) if ((*vis)[*i] == false) {
push_vertex(*i, st, vis, adj); push_vertex(*i, st, vis, adj);
}
} }
st.push(v); st->push(v);
} }
/** /**
* //Recursive function/method to implement depth first traversal(dfs): * //Recursive function/method to implement depth first traversal(dfs):
* @param v : vertices * @param v vertices
* @param vis[] : array to keep track of visited nodes (boolean type) * @param vis array to keep track of visited nodes (boolean type)
* @param grev[] : graph with reversed edges * @param grev graph with reversed edges
* @return void * @return void
**/ **/
void dfs(int v, bool vis[], vector<int> grev[]) { void dfs(int v, std::vector<bool> *vis, const std::vector< std::vector<int> > &grev) {
vis[v] = true; (*vis)[v] = true;
// cout<<v<<" "; // cout<<v<<" ";
for (auto i = grev[v].begin(); i != grev[v].end(); i++) { for (auto i = grev[v].begin(); i != grev[v].end(); i++) {
if (vis[*i] == false) if ((*vis)[*i] == false) {
dfs(*i, vis, grev); dfs(*i, vis, grev);
}
} }
} }
// function/method to implement Kosaraju's Algorithm: // function/method to implement Kosaraju's Algorithm:
/** /**
* Info about the method * Info about the method
* @param V : vertices in graph * @param V vertices in graph
* @param adj[] : array of vectors that represent a graph (adjacency list/array) * @param adj array of vectors that represent a graph (adjacency list/array)
* @return int ( 0, 1, 2..and so on, only unsigned values as either there can be * @return int ( 0, 1, 2..and so on, only unsigned values as either there can be
no SCCs i.e. none(0) or there will be x no. of SCCs (x>0)) i.e. it returns the no SCCs i.e. none(0) or there will be x no. of SCCs (x>0)) i.e. it returns the
count of (number of) strongly connected components (SCCs) in the graph. count of (number of) strongly connected components (SCCs) in the graph.
(variable 'count_scc' within function) (variable 'count_scc' within function)
**/ **/
int kosaraju(int V, vector<int> adj[]) { int kosaraju(int V, const std::vector< std::vector<int> > &adj) {
bool vis[V] = {}; std::vector<bool> vis(V, false);
stack<int> st; std::stack<int> st;
for (int v = 0; v < V; v++) { for (int v = 0; v < V; v++) {
if (vis[v] == false) if (vis[v] == false) {
push_vertex(v, st, vis, adj); push_vertex(v, &st, &vis, adj);
}
} }
// making new graph (grev) with reverse edges as in adj[]: // making new graph (grev) with reverse edges as in adj[]:
vector<int> grev[V]; std::vector< std::vector<int> > grev(V);
for (int i = 0; i < V + 1; i++) { for (int i = 0; i < V + 1; i++) {
for (auto j = adj[i].begin(); j != adj[i].end(); j++) { for (auto j = adj[i].begin(); j != adj[i].end(); j++) {
grev[*j].push_back(i); grev[*j].push_back(i);
...@@ -89,7 +96,7 @@ int kosaraju(int V, vector<int> adj[]) { ...@@ -89,7 +96,7 @@ int kosaraju(int V, vector<int> adj[]) {
int t = st.top(); int t = st.top();
st.pop(); st.pop();
if (vis[t] == false) { if (vis[t] == false) {
dfs(t, vis, grev); dfs(t, &vis, grev);
count_scc++; count_scc++;
} }
} }
...@@ -101,21 +108,21 @@ int kosaraju(int V, vector<int> adj[]) { ...@@ -101,21 +108,21 @@ int kosaraju(int V, vector<int> adj[]) {
// All critical/corner cases have been taken care of. // All critical/corner cases have been taken care of.
// Input your required values: (not hardcoded) // Input your required values: (not hardcoded)
int main() { int main() {
int t; int t = 0;
cin >> t; std::cin >> t;
while (t--) { while (t--) {
int a, b; // a->number of nodes, b->directed edges. int a = 0, b = 0; // a->number of nodes, b->directed edges.
cin >> a >> b; std::cin >> a >> b;
int m, n; int m = 0, n = 0;
vector<int> adj[a + 1]; std::vector< std::vector<int> > adj(a + 1);
for (int i = 0; i < b; i++) // take total b inputs of 2 vertices each for (int i = 0; i < b; i++) // take total b inputs of 2 vertices each
// required to form an edge. // required to form an edge.
{ {
cin >> m >> n; // take input m,n denoting edge from m->n. std::cin >> m >> n; // take input m,n denoting edge from m->n.
adj[m].push_back(n); adj[m].push_back(n);
} }
// pass number of nodes and adjacency array as parameters to function: // pass number of nodes and adjacency array as parameters to function:
cout << kosaraju(a, adj) << endl; std::cout << kosaraju(a, adj) << std::endl;
} }
return 0; return 0;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册