⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adaptable_functors.cpp

📁 C++ sample code, for the book: C++ black book, including templates, exceptional handling.
💻 CPP
字号:
#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
#include <functional>
using namespace std;

const int NUMBER_ELEMENTS = 6;

int main()
{
    int initial_values1[NUMBER_ELEMENTS] = {3, 5, 7, 9, 11, 13};
    int initial_values2[NUMBER_ELEMENTS] = {1, 2, 3, 4, 5, 6};

    vector<int> vector1(NUMBER_ELEMENTS);
    vector<int> vector2(NUMBER_ELEMENTS);
    vector1.assign(initial_values1, initial_values1 + NUMBER_ELEMENTS);
    vector2.assign(initial_values2, initial_values2 + NUMBER_ELEMENTS);

    ostream_iterator<int, char> ostream_itr(cout, " ");

    cout << "Vector 1: " << endl;
    copy(vector1.begin(), vector1.end(), ostream_itr);
    cout << endl;

    cout << "Vector 2: " << endl;
    copy(vector2.begin(), vector2.end(), ostream_itr);
    cout << endl;

    cout << "Vector 1 - vector 2: " << endl;
    transform(vector1.begin(), vector1.end(), vector2.begin(), ostream_itr, minus<int>());
    cout << endl;
 
    cout << "10 * vector 2: " << endl;
    transform(vector2.begin(), vector2.end(), ostream_itr, bind1st(multiplies<int>(), 10));
    cout << endl;
  
    return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -