[algogeeks] Re: map problem

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

typedef mapfloat,int mmap;

for inserting within a for loop insert using cin

for(i=0;in;i++)

{
 cinmmap[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.



[algogeeks] Re: map problem

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

typedef mapfloat,int mmap;

u can then insert values using cin within a for loop

for(i=0;i5;i++)
{
  cinmmap[i];
}

c if this works

regards

anusha


On Aug 24, 8:46 pm, mohit verma mohit89m...@gmail.com 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];
   mapfloat,twoint 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.