[algogeeks] Re: map problem

2011-08-24 Thread anusha
u can declare it without an initial size

typedef map mmap;

u can then insert values using cin within a for loop

for(i=0;i<5;i++)
{
  cin>>mmap[i];
}

c if this works

regards

anusha


On Aug 24, 8:46 pm, mohit verma  wrote:
> hey guys ,
> i want to store 3 values in stl map  making float as key value.
> I am doing something like this -
>   typedef const int twoint[2];
>   map mmap;
> but when i try to insert using make_pair() , compiler shows some error.
> could someone tell me how to include these 2 more values without using extra
> map?
>
> --
> 
> *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.



[algogeeks] Re: map problem

2011-08-24 Thread Anusha
u can declare and insert in this way

typedef map mmap;

for inserting within a for loop insert using cin

for(i=0;i>mmap[i];

}

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/algogeeks/-/GMOQ_jGWvfYJ.
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.