Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using Python and C++ Give a theta analysis of the time efficiency of the following code fragments: a) n = input('enter n: ') for i

Using Python and C++ Give a theta analysis of the time efficiency of the following code fragments:

a) n = input('enter n: ') for i in range(n): x = 2 * n while x > 1: x = x / 2

b) n = input('enter n: ') total = 0 for i in range(n): for j in range(10000): total += j print total

c) Total = 0 n = input('enter n: ') for i in range(2 * n); for j in range(i, n): total += j for j in range(n): total += j print j


Step by Step Solution

3.38 Rating (154 Votes )

There are 3 Steps involved in it

Step: 1

a n2 as the for loop executes n times and in ... 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

Introduction to the theory of computation

Authors: Michael Sipser

3rd edition

1133187790, 113318779X, 9781285401065 , 978-0470530658

More Books

Students also viewed these Programming questions