提交 3e355d0f 编写于 作者: A AkVaya

Performed the requested changes

上级 ab261831
...@@ -31,93 +31,109 @@ ...@@ -31,93 +31,109 @@
#include <vector> #include <vector>
#include <queue> #include <queue>
const int nax = 5e5 + 1;
/** /**
* Class for representing graph as an adjacency list. * Class for representing graph as an adjacency list.
*/ */
class graph { /**
private: * @namespace graph
int n; /// size of the graph * @brief Graph algorithms
*/
namespace graph{
/**
* @namespace is_graph_bipartite
* @brief Functions for checking whether a graph is bipartite or not
*/
namespace is_graph_bipartite{
std::vector<std::vector <int> > adj; /// adj stores the graph as an adjacency list class Graph {
private:
int n; /// size of the graph
std::vector<int> side; ///stores the side of the vertex std::vector<std::vector <int> > adj; /// adj stores the graph as an adjacency list
public: std::vector<int> side; ///stores the side of the vertex
/**
* @brief Constructor that initializes the graph on creation
*/
graph(int size = nax){
n = size;
adj.resize(n);
side.resize(n,-1);
}
void addEdge(int u, int v); /// function to add edges to our graph static const int nax = 5e5 + 1;
bool is_bipartite(); /// function to check whether the graph is bipartite or not
}; public:
/** /**
* @brief Function that add an edge between two nodes or vertices of graph * @brief Constructor that initializes the graph on creation
* */
* @param u is a node or vertex of graph explicit Graph(int size = nax){
* @param v is a node or vertex of graph n = size;
*/ adj.resize(n);
void graph::addEdge(int u, int v) { side.resize(n,-1);
adj[u-1].push_back(v-1); }
adj[v-1].push_back(u-1);
} void addEdge(int u, int v); /// function to add edges to our graph
/**
* @brief function that checks whether the graph is bipartite or not bool is_bipartite(); /// function to check whether the graph is bipartite or not
* the function returns true if the graph is a bipartite graph
* the function returns false if the graph is not a bipartite graph };
* /**
* @details * @brief Function that add an edge between two nodes or vertices of graph
* Here, side refers to the two disjoint subsets of the bipartite graph. *
* Initially, the values of side are set to -1 which is an unassigned state. A for loop is run for every vertex of the graph. * @param u is a node or vertex of graph
* If the current edge has no side assigned to it, then a Breadth First Search operation is performed. * @param v is a node or vertex of graph
* If two neighbours have the same side then the graph will not be bipartite and the value of check becomes false. */
* If and only if each pair of neighbours have different sides, the value of check will be true and hence the graph bipartite. void Graph::addEdge(int u, int v) {
* adj[u-1].push_back(v-1);
*/ adj[v-1].push_back(u-1);
bool graph::is_bipartite(){ }
bool check = true; /**
std::queue<int> q; * @brief function that checks whether the graph is bipartite or not
for (int current_edge = 0; current_edge < n; ++current_edge) * the function returns true if the graph is a bipartite graph
{ * the function returns false if the graph is not a bipartite graph
if(side[current_edge] == -1){ *
q.push(current_edge); * @details
side[current_edge] = 0; * Here, side refers to the two disjoint subsets of the bipartite graph.
while(q.size()){ * Initially, the values of side are set to -1 which is an unassigned state. A for loop is run for every vertex of the graph.
int current = q.front(); * If the current edge has no side assigned to it, then a Breadth First Search operation is performed.
q.pop(); * If two neighbours have the same side then the graph will not be bipartite and the value of check becomes false.
for(auto neighbour : adj[current]){ * If and only if each pair of neighbours have different sides, the value of check will be true and hence the graph bipartite.
if(side[neighbour] == -1){ *
side[neighbour] = (1 ^ side[current]); */
q.push(neighbour); bool Graph::is_bipartite(){
} bool check = true;
else{ std::queue<int> q;
check &= (side[neighbour] != side[current]); for (int current_edge = 0; current_edge < n; ++current_edge)
{
if(side[current_edge] == -1){
q.push(current_edge);
side[current_edge] = 0;
while(q.size()){
int current = q.front();
q.pop();
for(auto neighbour : adj[current]){
if(side[neighbour] == -1){
side[neighbour] = (1 ^ side[current]);
q.push(neighbour);
}
else{
check &= (side[neighbour] != side[current]);
}
}
} }
} }
} }
return check;
} }
} } /// namespace is_graph_bipartite
return check; } /// namespace graph
}
/** /**
* Function to test the above algorithm * Function to test the above algorithm
* @returns none
*/ */
void test(){ static void test(){
graph G1(5); /// creating graph G1 with 5 vertices graph::is_graph_bipartite::Graph G1(5); /// creating graph G1 with 5 vertices
/// adding edges to the graphs as per the illustrated example /// adding edges to the graphs as per the illustrated example
G1.addEdge(1,2); G1.addEdge(1,2);
G1.addEdge(1,3); G1.addEdge(1,3);
G1.addEdge(3,4); G1.addEdge(3,4);
G1.addEdge(4,5); G1.addEdge(4,5);
graph G2(3); /// creating graph G2 with 3 vertices graph::is_graph_bipartite::Graph G2(3); /// creating graph G2 with 3 vertices
/// adding edges to the graphs as per the illustrated example /// adding edges to the graphs as per the illustrated example
G2.addEdge(1,2); G2.addEdge(1,2);
G2.addEdge(1,3); G2.addEdge(1,3);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册