Illustrating the generic partial_sum algorithm

Started by aruljothi, Jun 11, 2009, 07:48 PM

Previous topic - Next topic

aruljothi

 
#include <algorithm>
#include <numeric>
#include <iostream>
using namespace std;

int main()
{
  const int N = 20;
  int x1[N], x2[N];

  for (int i = 0; i < N; ++i)
    x1 = i;

  // Compute the partial sums of 0, 1, 2, 3, ..., N - 1, putting the result inx2:
  partial_sum(&x1[0], &x1[N], &x2[0]);

  for (int i = 0; i < N; ++i)
    cout << x2 << " ";

  return 0;
}