Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Consider the following C/C++ function. int search( int x, int list[], int left, int right ) { int result; int mid = (left +

1. Consider the following C/C++ function.

int search( int x, int list[], int left, int right )

{

int result;

int mid = (left + right) / 2;

if (x == list[mid])

result = mid;

else if (x < list[mid] && left < mid)

result = search( x, list, left, mid-1 );

else if (x > list[mid] && mid < right)

result = search( x, list, mid+1, right );

else

result = -1;

return result;

}

a) Give the big-O classification of the function: ____O(log2n)___________

b) Using the function, complete the following chart to show the number of steps required to find each of the values. Note that a step is defined to be one computation of variable mid.

index

0

1

2

3

4

5

6

7

8

9

10

11

12

13

14

value

100

110

120

130

140

150

160

170

180

190

200

210

220

230

240

steps

c) Based on the completed chart, give each of the following in terms of number of steps when the search key is found.

Best case: _____1_______

Worst case: _____4_______

Average case: ____________

d) How many steps are required when the search key is not found in the list? ____4________

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 And Expert Systems Applications Dexa 2022 Workshops 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 In Computer And Information Science 33

Authors: Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil ,Bernhard Moser ,Alfred Taudes ,Atif Mashkoor ,Johannes Sametinger ,Jorge Martinez-Gil ,Florian Sobieczky ,Lukas Fischer ,Rudolf Ramler ,Maqbool Khan ,Gerald Czech

1st Edition

ISBN: 3031143426, 978-3031143427

More Books

Students also viewed these Databases questions

Question

How do books become world of wonder?

Answered: 1 week ago

Question

Methods of Delivery Guidelines for

Answered: 1 week ago