in IS&Software Engineering retagged by
13,133 views
11 votes
11 votes

Consider the following C program segment.

while (first <= last)
{
    if (array[middle] < search)
        first = middle + 1; 
    else if (array[middle] == search)
        found = TRUE;
    else
        last = middle - 1;
    
    middle = (first + last)/2;
}

if (first > last)
    notpresent = TRUE;

The cyclomatic complexity of the program segment is_______________.

in IS&Software Engineering retagged by
13.1k views

2 Comments

Is this topic out of  syllabus now ??
4
4
I also want to know, because in my study material it is not there...
0
0

2 Answers

22 votes
22 votes
Best answer
Number of predicates $= 4,$ if, else if, while and if.

Cyclomatic complexity $=$ No. of predicates $+ 1 = 5.$
edited by
by

4 Comments

Why else is not considered as predicate??
1
1
predicate nodes with has out degree more than 2. else has only one
4
4

Anu007 

Can you please explain "out degree more than 2" ? Also why last "if" is included?

1
1
I think it is a part of software engineering and it is now out of syllabus ?

Right ??
1
1
1 vote
1 vote

The cyclomatic complexity of a structured program[a] is defined with reference to the control flow graph of the program, a directed graph containing the basic blocks of the program, with an edge between two basic blocks if control may pass from the first to the second. The complexity M is then defined as

    M = E − N + 2P,
where
    E = the number of edges of the graph.
    N = the number of nodes of the graph.
    P = the number of connected components.  

Source: http://en.wikipedia.org/wiki/Cyclomatic_complexity For a single program (or subroutine or method), P is always equal to 1. So a simpler formula for a single subroutine is

    M = E − N + 2 

For the given program, the control flow graph is:q100

 E = 13, N = 10.

Therefore, E - N + 2 = 5. 

3 Comments

Regina Phalange

Can you please explain how you got this control flow graph?

0
0
Thank you.

But Im not getting the graph as you got. Can you name the nodes with variables please?
0
0
Answer:

Related questions

Quick search syntax
tags tag:apple
author user:martin
title title:apple
content content:apple
exclude -tag:apple
force match +apple
views views:100
score score:10
answers answers:2
is accepted isaccepted:true
is closed isclosed:true