Page 1 of 1

Recurrence Relation Find the time taken of this algorithm using a tracing tree and substitution method public static voi

Posted: Thu May 05, 2022 1:17 pm
by answerhappygod
Recurrence Relation Find The Time Taken Of This Algorithm Using A Tracing Tree And Substitution Method Public Static Voi 1
Recurrence Relation Find The Time Taken Of This Algorithm Using A Tracing Tree And Substitution Method Public Static Voi 1 (33.74 KiB) Viewed 31 times
Recurrence Relation Find the time taken of this algorithm using a tracing tree and substitution method public static void rec(int n) { if(n>1) { for(i=0; i<n; i++) { System.out.println(n); } rec(n-1); }