fork(1) download
  1. #include <set>
  2. #include <algorithm>
  3. #include <iostream>
  4.  
  5. class CountIt {
  6. public:
  7. CountIt() : storage(0), counter(0) {}
  8. CountIt& operator++()
  9. {
  10. ++counter;
  11. return *this;
  12. }
  13. CountIt operator++(int)
  14. {
  15. CountIt oldValue = *this;
  16. return ++(*this);
  17. }
  18. int& operator*() { return storage;}
  19. int storage, counter;
  20. };
  21.  
  22. int main()
  23. {
  24. std::set<int> s1 { 1,2,3,4 };
  25. std::set<int> s2 { 3,4,5,6 };
  26.  
  27. CountIt const & c = std::set_intersection(
  28. s1.begin(), s1.end(), s2.begin(), s2.end(),
  29. CountIt()
  30. );
  31.  
  32. std::cout << c.counter;
  33. }
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
2