您的位置:首页 > 其它

第十五周项目1:阅读程序,领会STL用法(4)

2016-06-03 17:24 281 查看

问题及代码:

/*Copyright (c)2016,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:main.cpp
*作    者:崔青青
*完成日期:2016年6月3日
*版 本 号:v1.0
*问题描述:
*输入描述:无
*输出描述:无
*/
#include<algorithm>
#include<functional>
//#include<numeric>
#include<vector>
#include<iostream>
#include<iterator>
using namespace std;
class myAdd:public binary_function<int,int,int>
{
public:
int operator()(int a,int b)const
{
return a+b;
}
};
int main()
{
int a[5]={1,2,3,4,5};
vector<int>my(5);
transform(a,a+5,my.begin(),bind2nd(myAdd(),4));
copy(my.begin(),my.end(),ostream_iterator<int>(cout," "));
cout<<endl;
transform(a,a+5,a,my.begin(),myAdd());
copy(my.begin(),my.end(),ostream_iterator<int>(cout," "));
cout<<endl;
return 0;
}


运行结果:



知识点总结:

这个程序涉及了类作为函数对象,向量,算法,看这个程序的时候还是有点吃力,有很多地方需要查相关资料。

学习心得:

自己的努力不会白费的,努力就会有结果。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: