Find the second maximum in an array?

Answers were Sorted based on User's Feedback



Find the second maximum in an array? ..

Answer / navs

if we take the array as
arr[]={1,4,7,2,10,0,6}

get the count

int count =6;
int max =arr[0];
int smax;

for (i=0;i<=count;i++)
{
if(max<arr[i])
{
smax=max;
max=max[i];
}
}

smax would give the second largest number

Is This Answer Correct ?    0 Yes 6 No

Find the second maximum in an array? ..

Answer / vili

// this deals with negative numbers as well
int getSecondMax( int* pArray, int nSize )
{
int nMax = pArray[0];
int n2ndMax = pArray[0];
for ( int i = 1; i < nSize; i++ )
{
if ( nMax < pArray[i] )
{
n2ndMax = nMax;
n2ndMax = pArray[i];
}
}
return n2ndMax;
}

Is This Answer Correct ?    6 Yes 22 No

Post New Answer

More C++ General Interview Questions

What are c++ stream classes?

0 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


Difference between pointer to constant vs. Pointer constant

0 Answers  


What is the use of setfill in c++?

0 Answers  


What are c++ manipulators?

0 Answers  






When you overload member functions, in what ways must they differ?

0 Answers  


What is pure virtual function?

0 Answers  


Is c++ the hardest language?

0 Answers  


What is a c++ vector?

0 Answers  


Is swift faster than go?

0 Answers  


Differentiate between declaration and definition in C++?

1 Answers  


How to tokenize a string in c++?

0 Answers  


Categories