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 A (

5 marks

):

Develop a recurrence relationship for the

silly

method that is called as follows:

int result = silly (n);

Part B

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

SQL Database Programming

Authors: Chris Fehily

1st Edition

1937842312, 978-1937842314

More Books

Students also viewed these Databases questions