Hi
i need recurrence for this algorithm

count ← 0
Alg(n,list)
If(n==0)
count++
Else
Return Alg(n-1,list);
Return count.