#include <vector> #include <iterator> #include <iostream> using namespace std; template <typename T> void reverse(T i,T j){while (i != j && i != --j) swap(*i++,*j);} int main() { vector<int> v; v.push_back(1); v.push_back(2); v.push_back(3); ostream_iterator<int> o(cout," "); reverse(v.begin(),v.end()); copy(v.begin(),v.end(),o); } |
#include <algorithm> #include <iostream> using namespace std; struct Sink { Sink& operator*(){return *this;} Sink& operator++(){return *this;} Sink& operator++(int){return *this;} template <typename T> Sink& operator=(const T& t){return *this;} }; struct TestIter { int i; TestIter(int i0 = 0){i = i0;} TestIter& operator++(){cout << i-- << " "; return *this;} int operator*(){return i;} bool operator!=(const TestIter& t){return i != t.i;} }; int main() { TestIter i(10),j; copy(i,j,Sink()); } |
iterator_traits の引数を VC++ に合わせて、多少変更してある。
#include <deque> #include <iostream> using namespace std; namespace test { template <class Iter> class reverse_iterator : public iterator<iterator_traits<Iter>::iterator_category, iterator_traits<Iter>::value_type> { protected: Iter current; public: typedef Iter iterator_type; typedef iterator_traits<Iter>::distance_type difference_type; typedef value_type* pointer; typedef value_type& reference; reverse_iterator() : current() {} explicit reverse_iterator(Iter x) : current(x) {} template <class U> reverse_iterator(const reverse_iterator<U>& x) : current(x.base()) {} Iter base()const{return current;} reference operator*()const{Iter i = current; return *--i;} pointer operator->()const{Iter i = current; return &*--i;} reference operator[](difference_type n)const{return *(current-n-1);} reverse_iterator& operator++(){--current; return *this;} reverse_iterator operator++(int) {reverse_iterator r = *this; --current; return r;} reverse_iterator& operator--(){++current; return *this;} reverse_iterator operator--(int) {reverse_iterator r = *this; ++current; return r;} reverse_iterator operator+(difference_type n)const{return current-n;} reverse_iterator& operator+=(difference_type n){current -= n; return *this;} reverse_iterator operator-(difference_type n)const{return current+n;} reverse_iterator& operator-=(difference_type n){current += n; return *this;} }; } int main() { deque<int> v; v.push_back(1); v.push_back(2); v.push_back(3); test::reverse_iterator<deque<int>::iterator> r(v.end()); cout << r[0] << r[1] << r[2] << endl; } |
#include <string> #include <iostream> using namespace std; namespace test { template <class T, class Ch = char, class Tr = char_traits<Ch> > class ostream_iterator : public iterator<output_iterator_tag,void> { public: typedef Ch char_type; typedef Tr traits_type; typedef basic_ostream<Ch,Tr> ostream_type; ostream_iterator(ostream_type& s) : strm(s) {} ostream_iterator(ostream_type& s,const Ch* d) : strm(s),deli(d) {} ostream_iterator& operator=(const T& v){strm << v << deli; return *this;} ostream_iterator& operator*(){return *this;} ostream_iterator& operator++(){return *this;} ostream_iterator& operator++(int){return *this;} private: ostream_type strm; string deli; }; } int main() { test::ostream_iterator<int> o(cout," "); *o = 10; *o = 5; cout << endl; } |
#include <iostream> using namespace std; namespace test { template <class T, class Ch = char, class Tr = char_traits<Ch>, class Dist = ptrdiff_t> class istream_iterator : public iterator<input_iterator_tag,T,Dist> { public: typedef Ch char_type; typedef Tr traits_type; typedef basic_istream<Ch,Tr> istream_type; istream_iterator(istream_type& s = cin) : strm(s) {} const T& operator*(){T t; strm >> t; return t;} const T& operator->(){return operator*();} istream_iterator& operator++(){return *this;} istream_iterator& operator++(int){return *this;} private: istream_type strm; }; } int main() { test::istream_iterator<int> i(cin); int j = *i; cout << j << endl; } |
#include <iostream> using namespace std; namespace test { template <class T, class Ch = char, class Tr = char_traits<Ch>, class Dist = ptrdiff_t> class istream_iterator : public iterator<input_iterator_tag,T,Dist> { public: typedef Ch char_type; typedef Tr traits_type; typedef basic_istream<Ch,Tr> istream_type; istream_iterator(istream_type& s = cin) : strm(s) {strm >> val;} const T& operator*()const{return val;} const T& operator->()const{return operator*();} istream_iterator& operator++(){strm >> val; return *this;} istream_iterator& operator++(int){return operator++();} private: istream_type strm; T val; }; } int main() { test::istream_iterator<int> i(cin); int j = *i; cout << j << endl; } |
valid_rand() { // ランダムアクセス反復子用 if (curr < c->begin() || cur > c->end()) throw out_of_bounds(); } Checked_iter operator+(Dist d) { Checked_iter ci += *this; ci.curr += d; ci.valid_rand(); return ci; } // operator- も同様 bool operator<(const Checked_iter& ci) { return curr < ci.curr; } // operator!= 等も同様 |