2024-04-09 06:45:18 +00:00
|
|
|
// fig06_12.cpp
|
|
|
|
// Compute the product of an array's elements using accumulate.
|
|
|
|
#include <array>
|
|
|
|
#include <iostream>
|
|
|
|
#include <numeric>
|
|
|
|
|
2024-04-16 06:03:08 +00:00
|
|
|
template <typename T>
|
|
|
|
T multiply(T x, T y) {
|
2024-04-09 06:45:18 +00:00
|
|
|
return x * y;
|
|
|
|
}
|
|
|
|
|
2024-04-16 06:03:08 +00:00
|
|
|
|
|
|
|
int multiply_int(int x, int y) {
|
|
|
|
return x * y;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-23 06:02:28 +00:00
|
|
|
double f(double& x){
|
|
|
|
return x*x;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename F, long unsigned int N>
|
|
|
|
T integrate (std::array<T, N> x, F f){
|
|
|
|
T tmp{T(0)};
|
|
|
|
for (auto s: x){
|
|
|
|
tmp+= f(s);
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
typedef double (*FUNC)(double&);
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T, long unsigned int N>
|
|
|
|
T integrate2 (std::array<T, N> x, FUNC f){
|
|
|
|
T tmp{T(0)};
|
|
|
|
for (auto s: x){
|
|
|
|
tmp+= f(s);
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-09 06:45:18 +00:00
|
|
|
int main() {
|
|
|
|
constexpr std::array integers{1, 2, 3, 4, 5};
|
2024-04-23 06:02:28 +00:00
|
|
|
std::array floats {1.0, 2.0, 3.0, 4.0, 5.0};
|
2024-04-09 06:45:18 +00:00
|
|
|
auto multiply_lambda = [](const auto& x, const auto& y) {return x * y; };
|
|
|
|
|
2024-04-23 06:02:28 +00:00
|
|
|
auto f_lambda = [](auto& x) {return x*x;};
|
|
|
|
|
|
|
|
auto g_lambda = [&integers](auto& x) {
|
|
|
|
auto tmp{0};
|
|
|
|
for (int i{0};auto s: x){
|
|
|
|
tmp += s*integers[i];
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
};
|
|
|
|
|
2024-04-16 06:03:08 +00:00
|
|
|
std::cout << "Product of integers: " << std::accumulate( std::begin(integers), std::end(integers), 1, multiply<int>) << "\n";
|
|
|
|
|
2024-04-23 06:02:28 +00:00
|
|
|
std::cout << "Product of integers: " << std::accumulate( integers.cbegin(), integers.cend(), 1, multiply<int>) << "\n";
|
|
|
|
|
2024-04-16 06:03:08 +00:00
|
|
|
std::cout << "Product of integers with a lambda: " << std::accumulate(std::begin(integers), std::end(integers), 1, multiply_lambda) << "\n";
|
|
|
|
|
|
|
|
std::cout << "Product of integers with a lambda: " << std::accumulate(std::begin(floats), std::end(floats), 1, multiply_int) << "\n";
|
2024-04-09 06:45:18 +00:00
|
|
|
|
2024-04-16 06:03:08 +00:00
|
|
|
std::cout << "Product of integers with a lambda: " << std::accumulate(std::begin(floats), std::end(floats), 1, multiply_lambda) << "\n";
|
2024-04-23 06:02:28 +00:00
|
|
|
|
|
|
|
std::cout << "Integration2 template " << integrate2(floats, f) << "\n";
|
|
|
|
|
|
|
|
std::cout << "Integration full template " << integrate(floats, f_lambda) << "\n";
|
|
|
|
|
|
|
|
std::cout << "Lambda test " << g_lambda(floats) << "\n";
|
2024-04-09 06:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* (C) Copyright 1992-2022 by Deitel & Associates, Inc. and *
|
|
|
|
* Pearson Education, Inc. All Rights Reserved. *
|
|
|
|
* *
|
|
|
|
* DISCLAIMER: The authors and publisher of this book have used their *
|
|
|
|
* best efforts in preparing the book. These efforts include the *
|
|
|
|
* development, research, and testing of the theories and programs *
|
|
|
|
* to determine their effectiveness. The authors and publisher make *
|
|
|
|
* no warranty of any kind, expressed or implied, with regard to these *
|
|
|
|
* programs or to the documentation contained in these books. The authors *
|
|
|
|
* and publisher shall not be liable in any event for incidental or *
|
|
|
|
* consequential damages in connection with, or arising out of, the *
|
|
|
|
* furnishing, performance, or use of these programs. *
|
|
|
|
**************************************************************************/
|
|
|
|
|