Greg Rogers

8,386
Reputation
420 views

Registered User

Name Greg Rogers
Member for 1 year
Seen 2 days ago
Website
Location US
Age 23
2d
answered Concurrency: how does shared memory vs message passing handle large data structures?
Nov
24
comment Game Programming Library C++
$350 isn't particularly expensive considering the immense amount of time spent actually creating a game...
Nov
19
comment Bit Hack - Round off to multiple of 8
rounding an integer n down to any integer m can be achieved with (n/m)*m
Nov
18
answered Interlocked and Memory Barriers
Nov
16
comment Why is exception handling bad?
however, exceptions aren't useful without RAII (or some other automatic resource management).
Nov
11
comment How stl vector gives random access
note that 1+sqrt(5)/2 is larger than 2...
Nov
6
comment Mysterious pointer-related multithreading slowdown
Can you post the two versions of the data structures you are comparing?
Nov
4
awarded  Nice Answer
Nov
2
accepted How do I get all permutations of xPy in C?
Nov
2
answered How do I get all permutations of xPy in C?
Oct
29
comment non-blocking thread-safe queue in C++?
The hazard pointer based queue is another option - it allows free'ing unused memory back to the OS, instead of having to maintain it forever in a free list. research.ibm.com/people/m/… Also see Relacy for sanity checking your lock free algorithm: groups.google.com/group/relacy
Oct
27
awarded  Good Answer
Oct
26
comment Bug in the code
Bring that up on meta... As it is he can always submit a new (hopefully better) question.
Oct
26
awarded  Popular Question
Oct
23
revised Is there an efficient index persistent data structure with multiple indexes
code block
Oct
23
comment Is there a CPU that can change variables simultaneously?
@Crashworks - Actually, modern CPUs are almost always superscalar, which means they can execute multiple instructions per clock cycle (mainly depending on dependencies between instructions and available functional units).
Oct
21
answered STL like container with O(1) performance.
Oct
20
answered how does the stl’s multimap insert respect orderings?
Oct
19
comment std::vector::clear() in constructor and destructor
If anything, you want to know that you deleted the same pointer twice. It is better to fail loudly (and find out about it) than accidentally succeed (masking a bug that will come back to bite you)
Oct
15
comment C++ map object not growing when members added
@AndreyT: I'm not sure where you got that requirement, but std::map<Key, Value>::value_type is typedef'ed to be std::pair<const Key, Value>, so it really isn't required to be assignable.
Oct
14
comment Synchronized Producer & Consumer with Circular buffer
You can just copy out the data that the consumer needs, and have it do stuff with the copy, then the original in the buffer is free to be overwritten. What you'd then be overwriting would be the thing it would have next consumed (the oldest item currently in the buffer).
Oct
13
comment C++ operator overloading, understanding the Google style guide
The other advantage of functors is that they can be inlined into the sorting code, whereas function pointers must always make the function call.
Oct
7
comment Algorithm: efficient way to remove duplicate integers from an array
It doesn't say you can't sort the array once you get it... Without using O(N) external memory sorting is the only way to do it in O(N log N) or better.
Oct
6
comment Wildcard search inside a Boost.MultiIndex data structure?
but you aren't looking for exact "foo" matches, you are looking for strings that begin with "foo", which goes past upper_bound.
Oct
6
answered Wildcard search inside a Boost.MultiIndex data structure?
Oct
2
comment What is easiest way to create multithreaded applications with C/C++?
pthreads are supported on windows: sourceware.org/pthreads-win32 All threading APIs are primitive... If you want higher level than you can use a threadpool, or actors, or some other abstraction over threads.
Sep
30
comment How to Deal with Algorithm/Data Structures Problems in Interview Process ?
Speaking as an interviewer, this is exactly what I look for - what led you to a conclusion - not the conclusion itself. Usually if its not an acceptable answer I will continue to prod and hint at the direction I am looking for. Learning to talk out your thought process in a high stress situation like an interview is tough, but definitely something you want to practice.
Sep
30
comment Performance of Python worth the cost?
5 Hz isn't exactly fast response time if you need any human interaction with the device.
Sep
28
answered Do threads clean-up after themselves in Win32/MFC and POSIX?
Sep
24
answered Avoid casting from volatile static uint8_t to uint8_t in function calls?
Sep
24
comment What are most useful/used vim commands in C/C++ dev environment
@Andrei - ":help text-objects" will give you a better idea of all the commands with a similar structure. In this case "B" could also be "{" or "}" with the same meaning (I find this easier to remember). You can apply any operator (such as d for delete, or v for selection) as well as a count before this to apply to the block.
Sep
24
accepted What is better for a message queue? mutex & cond or mutex&semaphore?
Sep
24
comment Problem with own Spinlock implementation
you also should use long to begin with instead of doing the explicit cast, and in the constructor take no parameters and just start it unlocked. If the thing creating it needs have it locked to begin with, they can just lock it after creating it but before sharing it. @Igratian - You don't need RAII in this case since the destructor has nothing to clean up (its just a long).
Sep
23
revised What is better for a message queue? mutex & cond or mutex&semaphore?
added 244 characters in body
Sep
23
answered What is better for a message queue? mutex & cond or mutex&semaphore?
Sep
23
comment Transfer ownership within STL containers?
your note is completely false: all STL containers provide an equivalent overload of std::swap(a,b) with the same semantics as a.swap(b)
Sep
22
answered Why are “long *” and “int *” not compatible in 32-bit code?
Sep
22
asked Why are “long *” and “int *” not compatible in 32-bit code?
Sep
18
comment Why is this code so slow?
Keep in mind that calculating the mean like this (especially for integers) is introducing a TON of error - the first few elements are the only elements that will be taken into account.
Sep
15
comment How to prevent Overloading?
Good point, I hadn't thought about simply declaring other C++ functions over top of it.
Sep
15
answered How to prevent Overloading?
Sep
14
accepted Template Type Conversion
Sep
14
answered Template Type Conversion
Sep
14
revised fileno, F_LOCK and F_ULOCK become undeclared and unavailable when I add std=c99 flag to gcc
deleted 41 characters in body; edited tags
Sep
14
awarded  Nice Question
Sep
12
awarded  Yearling
Sep
11
awarded  Nice Answer
Sep
11
answered What would be the purpose of using the reference and dereference operators immediately in sequence “&*B” ?
Sep
8
answered Confusing function lookup with templates in C++
Sep
8
comment Singleton - Why use classes?
All of these can be accomplished by free functions and using function pointers internally to change the implementation. The only difference is the interface. ie do you like typing instance() or not.