配列の2番目の大きな数を探します


方法1:
#include "stdio.h"
#include "stdlib.h"

//       a[0],    a[1],    ,              ,          。
int findsecondmaxvalue(int *a,int size)
{
    int i,max,s_max;
    max=a[0];  //   
	s_max=a[1];  //   
    for(i=0;imax)
        {
			s_max=max;  //         
			max=a[i];
        }
		else if(a[i]s_max)   //     
			s_max=a[i];
    }
	return s_max;
}

int main(void)
{
    int second,a[]={111,23,3,5,652,2,3};
    second=findsecondmaxvalue(a,sizeof(a)/sizeof(a[0]));
    printf("          :%d
",second); system("pause"); return 0; }

方法2:
/* 
              ,     (microsoft) 
         
*/ 
#include "stdio.h"  
#include "stdlib.h"  

int find(int *a,int n)   //             
{  
	int i,second=a[1];
	for(i=1;isecond)
			second=a[i];
	}
	return second;
}

int findsecondmaxvalue(int *a,int size)  
{  
	int i,first,second;
	first=second=a[0];
	for(i=1;ifirst)
		{
			second=first;
			first=a[i];
		}
		else if(a[i]second)
			second=a[i];
	}
	//         (               )  
	if(first==second)
	{
		second=find(a,size); //                       
	}
	return second;
}

int main(void)
{
	int a[] = {12012, 3, 45, 5, 66, 232, 65, 7, 8, 898, 56, 878, 170, 13, 5};
	int second=findsecondmaxvalue(a,sizeof(a)/sizeof(a[0]));
	printf("          :%d
",second); system("pause"); return 0; }