Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Give the order of growth (as a function of N ) of the running times of each of the. plz solve in (java) following code

Give the order of growth (as a function of N ) of the running times of each of the. plz solve in (java)

following code fragments:

a. int sum = 0;

for (int n = N; n > 0; n /= 2)

for(int i = 0; i < n; i++)

sum++;

b. int sum = 0;

for (int i = 1 i < N; i *= 2)

for (int j = 0; j < i; j++)

sum++;

c. int sum = 0;

for (int i = 1 i < N; i *= 2)

for (int j = 0; j < N; j++)

sum++;

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

Inductive Databases And Constraint Based Data Mining

Authors: Saso Dzeroski ,Bart Goethals ,Pance Panov

2010th Edition

1489982175, 978-1489982179

More Books

Students also viewed these Databases questions

Question

Which are non projected Teaching aids in advance learning system?

Answered: 1 week ago

Question

3. Comment on how diversity and equality should be managed.

Answered: 1 week ago

Question

describe the legislation that addresses workplace equality

Answered: 1 week ago