Question

The following algorithm finds the maximum and minimum element of an array (a[]). void MaxMin (int...

The following algorithm finds the maximum and minimum element of an array (a[]).

void MaxMin (int a[], int n, int max, int min)

{

int maxm, minm;

maxm=minm=a[0];

for (int j=1 ; j<n; j++)

{

if(a[j]>maxm)

maxm = a[j];

if (a[j]<minm)

minm = a[j];

}

max = maxm; min=minm;

}

a)Find the worst and average cases in term of the basic operations (comparison of two elements).

b) Find the order and the worst and average cases.

0 0
Add a comment Improve this question Transcribed image text
Know the answer?
Add Answer to:
The following algorithm finds the maximum and minimum element of an array (a[]). void MaxMin (int...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT