Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Repairing And Querying Databases Under Aggregate Constraints

Authors: Sergio Flesca ,Filippo Furfaro ,Francesco Parisi

2011th Edition

146141640X, 978-1461416401

More Books

Students also viewed these Databases questions