码迷,mamicode.com
首页 > 其他好文 > 详细

algorithm 简单用法(转)

时间:2014-08-13 14:22:36      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   ar   

algorithm 简单用法

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;


int student_Score[] = { 50,80,93,23,66};

void pritit(int nScore)
{
	cout<<nScore<<" ";
}
bool unPass(int nScore)
{
	return nScore < 60;
}
bool Pass(int nScore)
{
	return nScore >= 60;
}

int main(int argc, char* argv[])
{
	vector<int> v_score(student_Score,student_Score+sizeof(student_Score)/sizeof(int));
	vector<int>::iterator index;

	sort(v_score.begin(),v_score.end()); 	//排序

	for_each(v_score.begin(),v_score.end(),pritit); cout<<endl;	//显示

	index = min_element(v_score.begin(),v_score.end());	//显示最小
	cout<<"最小分数 "<<*index<<endl;

	index = max_element(v_score.begin(),v_score.end());	//显示最大
	cout<<"最大分数 "<<*index<<endl;

	cout<<"低于60的数量 " <<count_if(v_score.begin(),v_score.end(),unPass)<<endl;	//显示低于60分的数量

	cout<<"高于60的数量 "<<count_if(v_score.begin(),v_score.end(),Pass)<<endl;	//高于60的数量

	int sum = 0;
	for (index = v_score.begin(); index != v_score.end(); index++)	//平均数
	{
		sum += *index;
	}
	cout<<"平均数 "<<sum / v_score.size() <<endl;

	return 0;
}



 

algorithm 简单用法(转),布布扣,bubuko.com

algorithm 简单用法(转)

标签:style   blog   http   color   os   io   for   ar   

原文地址:http://www.cnblogs.com/bofengyu/p/3909846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!