アフィリエイト広告を利用しています

広告

posted by fanblog

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';
}


h10_06.png



この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/7377973
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


検索
<< 2018年08月 >>
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
プロフィール
こうすけさんの画像
こうすけ

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


×

この広告は30日以上新しい記事の更新がないブログに表示されております。