Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Develop a recurrence relationship for the strange method that is called as follows: Part A int result = strange(n); public static int strange (int n)

Develop a recurrence relationship for the strange method that is called as follows:

Part A

int result = strange(n);

public static int strange (int n)

{ if (n <= 1)

{

return n;

}

int sum = 0;

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

{

sum += strange (n/2);

}

return sum;

}

Part B

int result = silly(n)

public static int silly (int n)

{

if (n <= 1)

{

return -100;

}

int sum = 0;

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

{

sum += i;

}

return sum + silly (n-2);

}

Part C

int result = funny (n); public static int funny (int n) { if (n <= 1) { return -1; } int sum = funny (n-1) + funny (n-1) + n; return sum + n*funny (n/2); }

Please explain how to get time complexity for each code given.

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

Database Processing

Authors: David M. Kroenke

12th Edition International Edition

1292023422, 978-1292023427

More Books

Students also viewed these Databases questions

Question

how would you have done things differently?

Answered: 1 week ago

Question

3. What information do participants need?

Answered: 1 week ago