2018年03月01日
《その314》 問題演習 p.399演習10-6
新版明解C++中級編 p.399 演習10-6
<functional> で提供される算術演算のファンクタと transformアルゴリズムを組み合わせたプログラムを作成せよ。
// 解答
#include <vector>
#include <iomanip>
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
template <class T>
struct f : public unary_function<const T&, void> {
void operator()(const T& n) {
cout << setw(5) << n;
}
};
int main() {
vector<int> a{ 25, 62, 78, 36, 73, 55 };
vector<int> b{ 12, 26, 12, 60, 12, 40 };
cout << " a :";
for_each(a.begin(), a.end(), f<int>());
cout << '\n';
cout << " b :";
for_each(b.begin(), b.end(), f<int>());
cout << '\n';
vector<int> c(a.size());
// 2つのコンテナ a, b から取り出した2要素
// に対して、2項ファンクタを適用。
// 結果を、コンテナ c に格納。
transform(
a.begin(), a.end(), b.begin(), c.begin(),
plus<int>()
);
cout << " a + b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
a.begin(), a.end(), b.begin(), c.begin(),
minus<int>()
);
cout << " a - b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
a.begin(), a.end(), b.begin(), c.begin(),
divides<int>()
);
cout << " a / b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
a.begin(), a.end(), b.begin(), c.begin(),
modulus<int>()
);
cout << " a % b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
a.begin(), a.end(), b.begin(), c.begin(),
multiplies<int>()
);
cout << " a * b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
a.begin(), a.end(), c.begin(),
negate<int>()
);
// コンテナ a の要素に対して、
// 単項ファンクタ negate を適用
// し、結果をコンテナ c に格納。
cout << " -a :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
transform(
b.begin(), b.end(), c.begin(),
negate<int>()
);
cout << " -b :";
for_each(c.begin(), c.end(), f<int>());
cout << '\n';
}
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/7377973
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック