Assuming n=B-A+1, I need to derive the recurrence relation of this algorithm:
void recurringalgorithm(int *a, int A, int B){
if (A == B){
for (int j=0;j<B;j++){
cout<<a[j];
}
cout<<endl;
return;
}
for (int i=A;i<B;i++){
dosomething(a[A],a[i]);
recurringalgorithm(a,A+1,B);
dosomething(a[A],a[i]);
}
}
Help?
(a, A+1, B)without involvingi? – KennyTM Feb 4 '10 at 6:40nshould beB-A+1rather thanA-B+1since looking at the algorithm,AandBare used as start and end respectively. – Max Shawabkeh Feb 4 '10 at 6:51