Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In Big- notation, analyze the amortized running time of the following code/pseudo-code. Describe it as a function of the input size (here, n). int n;
In Big- notation, analyze the amortized running time of the following code/pseudo-code. Describe it as a function of the input size (here, n).
int n; // Set to some large value initially int* A; // Points to an array of size n int x = n; // Suppose x & n are only changed by this function int f1(int* A) { if( x == 0) { x = n; return 1; } else if( (x % (int)sqrt(n)) == 0){ for(int i=1; i <= n; i++){ for(int j = 0; j < i; j++){ // do something O(1) with A[] // x and n are unaffected } } } else { // do something O(1) // x and n are unaffected } x--; return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started