Complessità spaziale (2) una funzione iterativa
float somma(float lista[], int n)
{
float sommatemp=0;
int ii;
for(ii=0; ii
sommatemp += lista[ii];
return sommatemp;
}
Previous slide
Next slide
Back to the index
View Graphic Version
Notes:
No notes for slide 11