Ho una domanda generale relativa alla complessità ciclomatica. Si prega di dare un'occhiata al codice sorgente allegato:
private void downShift(int index)
{
// index of "child", which will be either index * 2 or index * 2 + 1
int childIndex;
// temp storage for item at index where shifting begins
Comparable temp = theItems[index];
// shift items, as needed
while (index * 2 <= theSize)
{
// set childIndex to "left" child
childIndex = index * 2;
// move to "right" child if "right" child < "left" child
if (childIndex != theSize && theItems[childIndex + 1].compareTo(theItems[childIndex]) < 0)
childIndex++;
if (theItems[childIndex].compareTo(temp) < 0)
{
// shift "child" down if child < temp
theItems[index] = theItems[childIndex];
}
else
{
// shifting complete
break;
}
// increment index
index = childIndex;
}
// position item that was originally at index where shifting began
theItems[index] = temp;
}
Dal codice precedente, ho disegnato un grafico di flusso come illustrato qui:
e ho contato il numero di nodi da 10 e anche il numero di bordi da 10. Usando la seguente formula, V (G) = E - N + 2P, ho calcolato 3 come complessità ciclomatica (o V (G)).
Il mio calcolo è corretto? Grazie!