Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Analyze each of the corresponding algorithms according to the points as follows: (I). Explain what value you choose for input size n . Estimate the

Analyze each of the corresponding algorithms according to the points as follows:

(I). Explain what value you choose for input size n. Estimate the running time (number of steps) T(n) in terms of the O(n) scale. Use the simplest and possibly the smallest valid big-Oh expressions.

(II). If it applies, give your estimates both for the worst case and best case.

(III). Document and comment each method. Describe the tasks of the methods, explain the meaning the return value if applies, show and justify your big-Oh estimate.

(IV). It is not necessary to run these methods in actual programs, but

if the task it performs is dubious, testing the method with various input in actual applications of the code may help to find its purpose and the big-Oh estimate.

NB: give your answers under comments for each method.

Exercises

A.

int find1( int[] list, int element ){

int answer = 0;

for(int k = 0; k < list.length; k++ )

if (element == list[k])

answer++;

return answer;

}//end method

Comments:

B.

public int find2(int[] arr){

int zeroCounter = find1(arr, 0);

if (zeroCounter > arr.length - 2)

return 0;

while(zeroCounter < arr.length - 2){

//see maxIndex() definition below

int max = maxIndex(arr);

arr[max] = 0;

//see display() definition below

display(arr);

zeroCounter ++;

}

return maxIndex(arr);

}//end method

//helper methods

int maxIndex(int[]arr){

int maxindex = 0;

for(int k = 0 ; k< arr.length; k++){

// note the use of absolute value

if(Math.abs(arr[maxindex]) < Math.abs(arr[k]))

maxindex = k;

}

return maxindex;

}

void display(int[]arr){

System.out.println();

for(int k = 0 ; k< arr.length; k++)

System.out.print(arr[k]+ );

System.out.println();

}

Comments

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

Advances In Databases 28th British National Conference On Databases Bncod 28 Manchester Uk July 2011 Revised Selected Papers Lncs 7051

Authors: Alvaro A.A. Fernandes ,Alasdair J.G. Gray ,Khalid Belhajjame

2011th Edition

3642245765, 978-3642245763

More Books

Students also viewed these Databases questions

Question

Define capital structure.

Answered: 1 week ago

Question

List out some inventory management techniques.

Answered: 1 week ago

Question

to encourage a drive for change by developing new ideas;

Answered: 1 week ago

Question

4 What are the alternatives to the competences approach?

Answered: 1 week ago