1
vote
Memory allocation on Windows C code
VirtualAlloc and friends can give you a bit of an edge if you do have heaps of data to process or if you need to go to the trouble of creating your own memory manager anyway.
Otherwise it's …
18
votes
a struct doesn’t belong in an object oriented program …
In C++, structs and classes are identical except for the default public/privateness of their members. (This default is easily, and usually, overridden.)
Ho …
10
votes
Are memory leaks ever ok?
Many people seem to be under the impression that once you free memory, it's instantly returned to the operating system and can be used by other programs.
This isn't true. Operating systems …
6
votes
GCC: program doesn’t work with compilation option -O3
Here's some code that seems to work, until you hit -O3...
#include <stdio.h>
int main()
{
int i = 0, j = 1, k = 2;
printf("%d %d %d\n", *(&j-1), *(&j …
5
votes
STL::Map - Walk through list or use find?
While I'd go with the find option, people put too much stress on asymptotic performance.
The fact is that asymptotic performance is a handy guide for algorithms that can receiv …
3
votes
Using sprintf without a manually allocated buffer
"the logging facility makes use of sprintf to format the text that gets written to file"
fprintf() does not impose any size limit. If you can write the text directly to file, d …
2
votes
paste on site, syntax highlighting.
The question is tagged "php" but you "would be only using C/C++"?
A PHP solution is GeSHi.
…
2
votes
Store 2D points for quick retrieval of those inside a rectangle
Sorting an array takes O(nlog*n*) time. Simply checking each point individually (without sorting) takes O(n) time.
Ergo, just going through and checking each point is …
0
votes
Which compiles to faster code: “n * 3” or “n+(n*2)”?
As long as you're using a decent optimising compiler, just write code that's easy for the compiler to understand. This makes it easier for the compiler to perform clever optimisations. …
23
votes
What do ‘statically linked’ and ‘dynamically linked’ mean?
I think a good answen to this question ought to explain what linking is.
When you compile some C code (for instance), it is translated to machine language. Just a sequence of bytes …
7
votes
How do I do lots of processing without gobbling cpu?
Perhaps just placing the background worker at a lower scheduling priority (e.g. using nice) would help. This means that your se …
0
votes
Architectural Suggestions in a Linux App
I posted this answer to illustrate a quite different approach to the "obvious" one, in the hope that someone discovers it to be exactly what they need. I didn't expect it to be selected as the best …
1
vote
About constructors/destructors and new/delete operators in C++ for custom objects.
The new operator does two things: allocating memory and calling the constructor.
The delete operator calls the destructor and then frees the memory.
…
1
vote
Is there a O(1) way in windows api to concatenate 2 files?
From a theoretical perspective, this is possible (on-disk) provided that:
the second file is destroyed
the concatenation honours the filesystem's fragment alignment (e.g. occ …
23
votes
Typedef pointers a good idea?
This can be appropriate when the pointer itself can be regarded as a "black box", that is, a piece of data whose internal representation should be irrelevant to the code.
Essentially, if yo …
