


The graph has no self-edges, no parallel edges.
The graph may not be connected.
A graph is bipartite if the nodes of the graph can be partitioned into two independent sets A and B such that every edge in the graph connects a node in set A and a node in set B.
If ‘N’ = 4, ‘M’ = 5, edgeList = [ [0, 1],[0, 3],[1, 2] ].

Here, you can see that the graph is bipartite as we can divide the nodes in two sets as follows:
setA = [0, 2].
setB = [1, 3].
In the graph, you can see that every edge in the graph connects a node in set A and a node in set B.
Hence, the output is “Yes”.
The first line of input contains an integer ‘T’ denoting the number of test cases. then ‘T’ test cases follow.
The first line of each test case consists of two space-separated integers ‘N’, ‘M’, representing the number of nodes and the number of edges of the graph.
Then next ‘M’ lines follow in each test case. The ith line consists of two space-separated integers ‘EDGES[i][0]’ and ‘EDGES[i][1]’ representing that there is a undirected edge between nodes ‘EDGES[i][0]’ and ‘EDGES[i][1]’.
For each test case, print the “Yes” if the given graph is bipartite, Otherwise, print “No”.
Print a separate line for each test case.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= N <= 500
1 <= M <= (N * (N - 1)) / 2
Time limit: 1 sec
The idea is to try out all possible combinations of dividing the nodes into 2 Sets and try to find a combination that satisfies the condition of a bipartite graph.
For that, we will be using the concept of bit masking. Let’s take ‘N’ = 3 and an integer ‘X’ = 5.
The binary representation of 5 is “101” which implies that nodes 1,3 are in set A and node 2 is in set B, in “101” node 1 is the LSB, and node 3 is MSB. Nodes that have their corresponding bits set are put in Set A and the remaining nodes in Set B.
So, if a graph has ‘N’ nodes we need to have an integer that has its binary representation ‘n’ bits long, which is (2^n)-1. So, every integer from 0 to (2^n)-1 represents a different combination of dividing the nodes into 2 Sets.
Now, after dividing the nodes into two Sets we just have to check that for every given edge of the graph the two nodes are in different sets or not, for that we just have to look at their corresponding bits if they both are set or unset means that they are in the same set otherwise not.
Here is the algorithm:
If we fix the Set of node ‘x’, let’s say it belongs to Set A then the nodes which are immediate neighbors of the node ‘x’ should belong to Set B as, if they belong to the Set A then the condition of bipartite fails. The same condition can be applied for the nodes which are immediate neighbors of the node ‘x’. So, after fixing the Set of any node in the connected component of the graph, the Set of all the other nodes will be fixed.
Let's denote Set A by 0 and Set B by 1. For every node which is not been visited yet, we run a recursive function check(node, c, adj, color, vis),(where “node” is the current node we are at, ‘c’ either 0 or 1, denoting the set of the “node”, “adj” is the adjacency list of all the nodes, adjacency list stores all the nodes which are directly connected to the ith node,” color ” is the vector which tells the Set of the ith node, “vis” is the vector which keeps track of every node whether it has been traversed or not) and try to assign Set to every node in its connected component if 2 nodes that are immediate neighbors are in the same Set then we will return false.
Here is the algorithm:
The basic idea of this approach is similar to the idea of approach 2 the only difference is that in approach 1 we use a recursive approach to assign Set to every node here we will be doing this iteratively with the help of Bfs that is we will be doing level order traversal.
For the implementation of this approach we will be using a data-structure “queue” as we want level order traversal so if a node ‘x' enters before a node “y” in the queue then “x” will be processed before “y”.
The idea of this approach is to traverse the graph in level order starting from the “source” node and putting in node “source” in Set A and explore all the neighboring nodes, if the neighboring node is not visited yet then we will make it visited, put this node in Set B and put in into “queue” otherwise we have to check the Set of the node, let say “x”, which has been visited. If the “source” node has the same set as the node “x” then the graph is not bipartite and we will return false otherwise continue the above process until the “queue” is not empty.
As the graph may not be connected we have to do the above-discussed algorithm for every connected component of the graph.
Here is the algorithm:
Sorted Doubly Linked List to Balanced BST
Longest Substring with K-Repeating Characters
Expression Add Operators
Gray Code Transformation
Count of Subsequences with Given Sum