Click here to Skip to main content
15,909,039 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CU history ...Ctrl + Alt +Del Pin
Tim Smith2-Aug-05 9:33
Tim Smith2-Aug-05 9:33 
GeneralRe: CU history ...Ctrl + Alt +Del Pin
Andy Brummer2-Aug-05 9:35
sitebuilderAndy Brummer2-Aug-05 9:35 
GeneralRe: CU history ...Ctrl + Alt +Del Pin
peterchen2-Aug-05 20:15
peterchen2-Aug-05 20:15 
Generalslow release version Pin
valerie992-Aug-05 9:04
valerie992-Aug-05 9:04 
GeneralRe: slow release version Pin
Anonymous2-Aug-05 9:05
Anonymous2-Aug-05 9:05 
GeneralRe: slow release version Pin
valerie992-Aug-05 9:42
valerie992-Aug-05 9:42 
GeneralRe: slow release version Pin
Blake Miller3-Aug-05 10:57
Blake Miller3-Aug-05 10:57 
GeneralRe: slow release version Pin
Tim Smith2-Aug-05 9:45
Tim Smith2-Aug-05 9:45 
There is a good chance you have an O^x loop (where x > 1) in your code. For example, if you had a O^2 loop, 10 data elements would require 10^2 or 100 iterations of the loop. 20 data elements would require 400 iterations. A simple doubling of the data set size requires four times as long to run. So going from 10 -> 10000000 would make the program appear to take forever.

I've seen some programs with an O^4 loop that wasn't required.

Or you just have an infinite loop. Try writing to a log file to check for progress.

Tim Smith

I'm going to patent thought. I have yet to see any prior art.
GeneralDrive Directory Emergency!! Help Me Pin
ultracrap2-Aug-05 8:54
ultracrap2-Aug-05 8:54 
GeneralRe: Drive Directory Emergency!! Help Me Pin
David Crow2-Aug-05 9:17
David Crow2-Aug-05 9:17 
GeneralMadness Pin
sroberts822-Aug-05 8:36
sroberts822-Aug-05 8:36 
GeneralRe: Madness Pin
Chris Losinger2-Aug-05 16:05
professionalChris Losinger2-Aug-05 16:05 
GeneralPlay Media File Pin
Aqueel2-Aug-05 7:35
Aqueel2-Aug-05 7:35 
GeneralCString!!! Pin
Smith#2-Aug-05 5:52
Smith#2-Aug-05 5:52 
GeneralRe: CString!!! Pin
Marc Soleda2-Aug-05 6:04
Marc Soleda2-Aug-05 6:04 
GeneralRe: CString!!! Pin
BadKarma2-Aug-05 6:14
BadKarma2-Aug-05 6:14 
GeneralRe: CString!!! Pin
Smith#2-Aug-05 6:44
Smith#2-Aug-05 6:44 
GeneralRe: CString!!! Pin
Peter Weyzen2-Aug-05 10:33
Peter Weyzen2-Aug-05 10:33 
QuestionHow to play a media file Pin
Aqueel2-Aug-05 4:52
Aqueel2-Aug-05 4:52 
GeneralAccess violation reading location Pin
Bruce Pataki2-Aug-05 4:50
Bruce Pataki2-Aug-05 4:50 
Questiona standard call for get current directory? Pin
IlanTal2-Aug-05 4:36
IlanTal2-Aug-05 4:36 
AnswerRe: a standard call for get current directory? Pin
Marc Soleda2-Aug-05 4:44
Marc Soleda2-Aug-05 4:44 
GeneralCListCtrl Pin
Halawlaws2-Aug-05 4:17
Halawlaws2-Aug-05 4:17 
GeneralRe: CListCtrl Pin
Marc Soleda2-Aug-05 4:40
Marc Soleda2-Aug-05 4:40 
GeneralRe: CListCtrl Pin
Halawlaws2-Aug-05 4:49
Halawlaws2-Aug-05 4:49 

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.