Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Write C + + code of this algorithm . choose the V 1 for the input Algorithm for Connectedness and Components: The following algorithm checks

Write C++ code of this algorithm . choose the V1 for the input
Algorithm for Connectedness and Components:
The following algorithm checks the connectedness of graphs.
S-1 : Set H=G and component count c=1.
S-2 : Choose an arbitrary vertex v of G.
S-3 : Fuse all vertices in the neighbourhood N(v) with v and call this vertex v.
S-4 : If the number of vertices which are non-adjacent to v is the same as that before the
fusion, then go to Step-5. Otherwise, go to Step-2.
S-5 : Delete the vertex v(with all fused vertex) from H call this new graph H.
S-6 : If H has any vertex left in it, then let clarrc+1 and go to Step-2. Otherwise, go to
Step-7.
S-7 : Print each c with its vertices. Stop.
Example 11.1 Consider the graph given in Figure 2:
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions