Predict the time complexity of the following recursive function, given the vector is of size N and the initial call is calSum(v, 0).
int sum = 0; …1 unit
void calcSum(vector v, int i)
{
if(i == v.size())…1unit
return;
sum += v[i];…1unit
calcSum(v, i+1);…??
}
How to find the tc here?