Search Results

-2
votes

How difficult is it to turn a “Java School” programmer into a C or C++ programmer?

It's just another language. And if you stick with the relatively small subset of pure OOP features, there is really not that much to learn from a Java developers perspective. The only thin …
4
votes

Can you write object oriented code in C?

Trivial example with a Animal and Dog, what you do is mirror C++'s vtable mechanism (largely anyway). You also separate allocation and instantiation (Animal_Alloc, Animal_New) so we don't call mall …
2
votes

Binary search optimization in c?

Instead of using a binary search to locate the item, a hash map might be more suitable because it has O(1) lookup characteristics. However that might be slow with load of collisions with a naive ap …
1
vote

Implementing RAII in pure C?

Probably the easiest way is to use goto to jump to a label at the end of a function but that's probably too manual for the sort of thing you're looking at. …
0
votes

Rounding off to nearest power of 2

For IEEE floats you'd be able to do something like this. int next_power_of_two(float a_F){ int f = *(int*)&a_F; int b = f << 9 != 0; // If we're a power of two this is 0 …
7
votes

What is your favorite C programming trick?

In C99 typedef struct{ int value; int otherValue; } s; s test = {.value = 15, .otherValue = 16}; /* or */ int a[100] = {1,2,[50]=3,4,5,[23]=6,7}; …
0
votes

What is the maximum size of buffers memcpy/memset etc. can handle?

They take a size_t argument; so the it's platform dependent. …
0
votes

Trie implementation

Cache optimizations are something you'll probably are going to have to do, because you'll have to fit the data into a single cacheline which generally is something like 64 bytes (which will probabl …
0
votes

What is the Cost of an L1 Cache Miss?

The easiest thing to do is to take a scaled photograph of the target cpu and physically measure the distance between the core and the level-1 cache. Multiply that distance by the distance electrons …
2
votes

C coding practices for performance or code size - beyond what a compiler does

Compilers these days still aren't very good at vectorizing your code so you'll still want to do the SIMD implementation of most algorithms yourself. Choosing the right datastructures for yo …