牛骨文教育服务平台(让学习变的简单)
博文笔记

查找次最大数

创建时间:2017-05-11 投稿人: 浏览次数:180

Write a function to find the second largest number in an array of integers

/*
File name:查找次大数.cpp
Author:杨柳
Date:2017/5/4
IDE:DEV-c++ 
*/
 #include<iostream>
 using namespace std; 
 
//先找出最大的数,放进a[o],在从a[1]到a[n-1]中找最大数为次大数 
int find(int a[],int n)   
{  
    int i; 
    int first_max=a[0];
	int second_max=0;
	for(i=1;i<n;i++)//如果数字全部一样,没有次大数 
	{
		if(a[i]==a[i-1])
		cout<<"无次最大值"<<endl; 		
	}
	
	for(i=1;i<n;i++)
	{
		if(a[i]>first_max)
			first_max=a[i];
	}
	a[0]=a[i];// 将最大数保存在a[0]中 
	second_max=a[1];
	
	for(i=2;i<n;i++)
	{
		if(a[i]>second_max)
			second_max=a[i];
	}
	return second_max;
}

int main()
{
	int a[] = {12012, 3, 45, 5, 66, 232, 65, 7, 8, 898, 56, 878, 170, 13, 5};
	int second=find(a,sizeof(a)/sizeof(a[0]));
	cout<<"这个数组中的次大数为:"<<second;
	return 0;
}


声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。