Question: Calculate the cost function of the code in c++. This function prints a pattern. // PRE: n is a power of 2 greater than zero.
Calculate the cost function of the code in c++.


This function prints a pattern. // PRE: n is a power of 2 greater than zero. // PRE: Initial call should be to i = 0 // e.g. pattern(8, 0) void pattern(int n, int i) { if (n > 0) { pattern(n/2, i); // Print i spaces cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
