i think u guys dint get my question . what i want to do is : (1 float and 2
intergers) in a single map entry with float key value.
 i did it this way:

typedef const int twoint[2];

map<float,twoint> mmap;

for inserting values i dint make any make_pair() function but used the
default one like this-
twoint tint;

    cin>>tint[0]>>tint[1];

    mmap.insert(makepair(f,tint));
but the compiler shows error. Do i need to redefine make_pair() or any other
way to store more than 2 values in map?


On Wed, Aug 24, 2011 at 10:31 PM, Nikhil Kumar <nikhil.nsit...@gmail.com>wrote:

> Post your pair functions ..I'm sure you're wrong there!
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>



-- 
........................
*MOHIT VERMA*

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to