其他分享
首页 > 其他分享> > 寻找第二大

寻找第二大

作者:互联网


uint16_t findmaxI_Sec(uint16_t* array)
{
uint16_t i=0;
uint16_t temp = 0;
uint16_t tempA=0;
uint16_t tempB=0;
uint16_t tempC=0;
uint16_t tempmaxA=array[0];
uint16_t tempmaxB=array[128];
uint16_t tempmaxC=array[256];
for(i=0; i<128; i++)
{
if(array[i]>tempA)
{
if(array[i]<tempmaxA)
tempA = array[i];
else
{
tempA = tempmaxA;
tempmaxA = array[i];
}
}

if(array[128+i]>tempB)
{
if(array[i]<tempmaxB)
tempB = array[128+i];
else
{
tempB = tempmaxB;
tempmaxB = array[128+i];
}
}

if(array[256+i]>tempC)
{
if(array[i]<tempmaxC)
tempC = array[256+i];
else
{
tempC = tempmaxC;
tempmaxC = array[256+i];
}
}


}
temp = tempA;
if(tempB > temp)
temp = tempB;
if(tempC > temp)
temp = tempC;


return temp;
}

标签:tempC,tempB,tempA,temp,第二,寻找,uint16,array
来源: https://www.cnblogs.com/sdushmily/p/16481836.html