Perfomed the requested changes

This commit is contained in:
AkVaya
2020-08-14 01:06:24 +05:30
parent b94c29ce01
commit 97f3e1a076

View File

@@ -103,7 +103,7 @@ bool graph::is_bipartite(){
return check;
}
/**
* main funtion
* Main funtion
*/
int main(){
graph G1(5); /// creating graph G1 with 5 vertices
@@ -132,4 +132,4 @@ int main(){
std::cout<<"The given graph G2 is not a bipartite graph\n";
}
return 0;
}
}