vote up 7 vote down star
2

I have next code:

#include <iostream>
#include <algorithm>
#include <map>
#include <iterator>

//namespace std
//{

std::ostream& operator << ( std::ostream& out, 
    			const std::pair< size_t, size_t >& rhs )
{
    out << rhs.first << ", " << rhs.second;
    return out;
}
//}

int main() 
{

    std::map < size_t, size_t > some_map;

    // fill  some_map with random values
    for ( size_t i = 0; i < 10; ++i )
    {
        some_map[ rand() % 10 ] = rand() % 100;
    }

    // now I want to output this map
    std::copy( 
        some_map.begin(), 
        some_map.end(), 
        std::ostream_iterator< 
              std::pair< size_t, size_t > >( std::cout, "\n" ) );

    return 0;
}

In this code I just want copy map to output stream. For do this I need define operator <<(..) - OK. But according names finding rules compiler can't find my operator<<().
Because std::cout, std::pair and std::copy which called my operator<< - all from namespace std.

Quick solution - add my oerator<< to std namespace - but it is ugly, imho.

What solutions or workaround for this problem do you know?

flag

33% accept rate
BTW, there is an STL algorithm that will accomplish the first for-loop, sgi.com/tech/stl/generate.html, then if you really feel that the random values need assigned random locations, sgi.com/tech/stl/random_shuffle.html. – ceretullis Mar 11 at 13:40

6 Answers

vote up 1 vote down check

I've founded one new elegant way to solve this problem.
I've got many interest ideas when read answers:

  • wrap iterator, for transform std::pair to std::string;
  • wrap std::pair, for have a chance to overload operator<<(...);
  • use usual std::for_each with printing functor;
  • use std::for_each with boost::labda - looks nice, except accessing to std::pair< >::first and std::pair< >::second members;

I think I will use all of this ideas in future for solve different other problems.
But for this case I've understaded that I can formulate my bproblem as "transform map's data to strings and write them to output stream" instead "copy map's data to ouput stream". My solution looks like:

namespace
{
std::string toString( const std::pair< size_t, size_t >& data)
{
    std::ostringstream str;
    str << data.first << ", " << data.second;
    return str.str();
}
} // namespace anonymous

std::transform( 
    some_map.begin(), 
    some_map.end(), 
    std::ostream_iterator< std::string >( std::cout, "\n" ),
    toString );

I think this method is most short and expressive than others.

link|flag
vote up 2 vote down

Using Boost Lambda, you could try something like this. The version I have of Boost Lambda, this doesn't actually work, I'll test and fix later.

#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>

using namespace boost::lambda;

std::for_each( some_map.begin(), some_map.end(), 
               std::cout << bind( &std::map<size_t,size_t>::value_type::first, _1 )
                         << ","
                         << bind( &std::map<size_t,size_t>::value_type::second, _1 ) );
link|flag
vote up 3 vote down

What you want is a transforming iterator. This kind of iterator wraps another iterator, forwards all positioning methods like operator++ and operator==, but redefines operator* and operator->.

Quick sketch :

template <typename ITER> 
struct transformingIterator : private ITER {
    transformingIterator(ITER const& base) : ITER(base) {}
    transformingIterator& operator++() { ITER::operator++(); return *this; }
    std::string operator*() const
    {
        ITER::value_type const& v = ITER::operator*();
        return "[" + v->first +", " + v->second + "]";
    }
...
link|flag
Thanks. Nice idea to create iterator wrappers, this idea could be generalized and used for solve other problems. – bb Mar 11 at 13:12
If you want something generic, one obvious step is to store the transformation in an appropriate boost::function. You'd need an extra template parameter for the new value_type, of course. – MSalters Mar 11 at 15:37
vote up 4 vote down

I'd just like to point out that adding things to the std:: namespace is illegal according to the C++ Standard (see section 17.4.3.1).

link|flag
Important remark, thank you. – bb Mar 11 at 11:32
One exception: you may add overloads for std::swap. – Konrad Rudolph Mar 11 at 12:29
@konrad go you have a reference for that? – Neil Butterworth Mar 11 at 12:37
@konrad s/go/do/ – Neil Butterworth Mar 11 at 12:37
Herb Sutter, in one of his Gurus of the Week, suggested "using std::swap" at the start of each file, so that standard swaps and user-defined swaps would use the same syntax. – David Thornley Mar 11 at 14:30
show 2 more comments
vote up 2 vote down

[I'd rather delete this answer, but I'll leave it for now, in case someone finds the discussion interesting.]

Since it's a reasonable extension to the std library, I'd just put it in std namespace, especially if this is a one time thing. You can just declare it static to prevent it from causing linker errors, should someone else do the same thing someplace else.

Another solution that comes to mind is to create a wrapper for std::pair:

template<class A, class B>
struct pairWrapper {
  const std::pair<A,B> & x;
  pairWrapper(const std::pair<A,B> & x) : x(x) {}
}

template<class A,class B>
std::ostream & operator<<(std::ostream & stream, const pairWrapper<A,B> & pw) { ... }
link|flag
+1, very nice -- the converting constructor will automatically convert a pair<A, B> to a pairWrapper when needed. But please add the ostream& parameter to your templated operator<<(). – j_random_hacker Mar 11 at 11:30
Nice, thank you. – bb Mar 11 at 11:31
Wrong, disallowed. Namespace std is for compiler-provided classes, templates and functions. You may not add overloads. – MSalters Mar 11 at 12:19
You'll probably need operator= for your pairWrapper as well because std::ostream_iterator requiers it and a compiler wouldn't be able to generate it for you due to a const member. – Serge Mar 11 at 12:36
@Serge: Are you sure? Because that would mean it can't print immutable objects at all. Maybe you mean the copy constructor? – TrayMan Mar 11 at 13:03
show 5 more comments
vote up 7 vote down

There is no standard way to cout a std::pair because, well, how you want it printed is probably different from the way the next guy wants it. This is a good use case for a custom functor or a lambda function. You can then pass that as an argument to std::for_each to do the work.

typedef std::map<size_t, size_t> MyMap;

template <class T>
struct PrintMyMap : public std::unary_function<T, void>
{
    std::ostream& os;
    PrintMyMap(std::ostream& strm) : os(strm) {}

    void operator()(const T& elem) const
    {
        os << elem.first << ", " << elem.second << "\n";
    }
}

To call this functor from your code:

std::for_each(some_map.begin(),
              some_map.end(),
              PrintMyMap<MyMap::value_type>(std::cout));
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.