Using a Binary Function to Multiply Two Ranges : Function Template « Function « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Function » Function TemplateScreenshots 
Using a Binary Function to Multiply Two Ranges
  
#include <vector>
#include <iostream>
#include <algorithm>

template <typename elementType>
class CMultiply
{
public:
    elementType operator () (const elementType& elem1,const elementType& elem2){
        return (elem1 * elem2);
    }
};

int main (){
    using namespace std;

    vector <int> v1, v2, vecResult;

    for (int nCount1 = 0; nCount1 < 10; ++ nCount1)
        v1.push_back (nCount1);

    for (int nCount2 = 100; nCount2 < 110; ++ nCount2)
        v2.push_back (nCount2);

    vecResult.resize (10);

    transform v1.begin()
                v1.end()
                v2.begin(),  // multiplier values
                vecResult.begin(),      // range that holds result
                CMultiply <int>() );    // the function that multiplies

    for (size_t nIndex1 = 0; nIndex1 < v1.size (); ++ nIndex1)
        cout << v1 [nIndex1<< ' ';

    for (size_t nIndex2 = 0; nIndex2 < v2.size (); ++nIndex2)
        cout << v2 [nIndex2<< ' ';

    for (size_t nIndex = 0; nIndex < vecResult.size (); ++ nIndex)
        cout << vecResult [nIndex<< ' ';

    return 0;
}
  
    
  
Related examples in the same category
1.A generic mode finding function.A generic mode finding function.
2.Function template: swap valuesFunction template: swap values
3.Simple template function to accept two parametersSimple template function to accept two parameters
4.template function for find a valuetemplate function for find a value
5.Creating a custom algorithm based on templateCreating a custom algorithm based on template
6.find all template function
7.Making a Sequence of Random Numbers
8.write function object
9.Use a Function Object to Hold state
10.template function for bubble sort
11.template function for compacting the items
12.Template copy array function
13.function template for getting the max value
14.Overriding a template function.
15.Using Standard Parameters with Template Functions
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.