/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ // MyAlgo0.h #ifdef __hpux #include #else #include using namespace std; #endif // コンテナ中の全要素を表示するアルゴリズム template void Disp(InputIter first,InputIter last) { while(first!=last) cout << *first++ << " " ; cout << endl; } // コンテナ中の全要素の総和を求めるアルゴリズム template T Sum(InputIter first,InputIter last,const T initval) { T sum = initval; while(first!=last) sum += *first++ ; return(sum); }