Click here to Skip to main content
15,790,243 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Multimap? Pin
Stephen Hewitt8-Jul-11 5:34
Stephen Hewitt8-Jul-11 5:34 
GeneralRe: Multimap? Pin
Niklas L8-Jul-11 5:49
Niklas L8-Jul-11 5:49 
AnswerRe: Multimap? Pin
Resmi Anna8-Jul-11 2:05
Resmi Anna8-Jul-11 2:05 
GeneralRe: Multimap? Pin
Stephen Hewitt8-Jul-11 5:32
Stephen Hewitt8-Jul-11 5:32 
AnswerRe: Multimap? Pin
ThatsAlok8-Jul-11 2:52
ThatsAlok8-Jul-11 2:52 
AnswerRe: Multimap? Pin
Stephen Hewitt8-Jul-11 5:31
Stephen Hewitt8-Jul-11 5:31 
QuestionMAP???? Pin
john56327-Jul-11 21:51
john56327-Jul-11 21:51 
AnswerRe: MAP???? Pin
ThatsAlok7-Jul-11 22:09
ThatsAlok7-Jul-11 22:09 
john5632 wrote:
I am thinking to use std::map becuase of ease of searching.

Is map can hold more than 1 lakhs entires? If not what data strucure should I use to perform fast search opeartion?


yes map can hold such a large data-structure, does your computer has enough memory for same first, second you can check that yourself by writing small program

like:-

   map<int,int> intMap;
for(int i=0;i<100000;i++)
{
    intMap.insert(map<int,int>::value_type(i,i));
}

"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Never mind - my own stupidity is the source of every "problem" - Mixture


cheers,
Alok Gupta
VC Forum Q&A :- I/IV
Support CRY- Child Relief and You

AnswerRe: MAP???? Pin
Resmi Anna7-Jul-11 23:30
Resmi Anna7-Jul-11 23:30 
QuestionHow to drag and drop bitmap Pin
manju 37-Jul-11 20:15
manju 37-Jul-11 20:15 
AnswerRe: How to drag and drop bitmap Pin
ThatsAlok7-Jul-11 22:15
ThatsAlok7-Jul-11 22:15 
GeneralRe: How to drag and drop bitmap Pin
manju 38-Jul-11 0:17
manju 38-Jul-11 0:17 
GeneralRe: How to drag and drop bitmap Pin
Richard MacCutchan8-Jul-11 1:39
mveRichard MacCutchan8-Jul-11 1:39 
GeneralRe: How to drag and drop bitmap Pin
ThatsAlok8-Jul-11 2:51
ThatsAlok8-Jul-11 2:51 
GeneralRe: How to drag and drop bitmap Pin
Richard MacCutchan8-Jul-11 3:29
mveRichard MacCutchan8-Jul-11 3:29 
GeneralRe: How to drag and drop bitmap Pin
enhzflep8-Jul-11 4:01
enhzflep8-Jul-11 4:01 
GeneralRe: How to drag and drop bitmap Pin
Richard MacCutchan8-Jul-11 6:17
mveRichard MacCutchan8-Jul-11 6:17 
AnswerRe: How to drag and drop bitmap Pin
ThatsAlok10-Jul-11 20:52
ThatsAlok10-Jul-11 20:52 
AnswerRe: How to drag and drop bitmap Pin
Niklas L8-Jul-11 1:38
Niklas L8-Jul-11 1:38 
Questionassertion failure Pin
mrby1237-Jul-11 19:29
mrby1237-Jul-11 19:29 
AnswerRe: assertion failure Pin
Malli_S7-Jul-11 21:20
Malli_S7-Jul-11 21:20 
AnswerRe: assertion failure Pin
CPallini7-Jul-11 23:16
mveCPallini7-Jul-11 23:16 
GeneralRe: assertion failure Pin
Albert Holguin8-Jul-11 4:41
professionalAlbert Holguin8-Jul-11 4:41 
AnswerRe: assertion failure Pin
Stefan_Lang8-Jul-11 1:19
Stefan_Lang8-Jul-11 1:19 
GeneralRe: assertion failure and "user break point called from code at 0x7c90120e" Pin
mrby1238-Jul-11 8:17
mrby1238-Jul-11 8:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.