Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
970 views

What is the fastest way to copy my array?

I'm doing some Wave file handling and have them read from disk into an array of bytes. I want to quickly copy portions from this byte array into another buffer for intermediate processing. Currently ...
2
votes
3answers
871 views

c++ std::pair, std::vector & memcopy

is it safe to memcopy myvect.size()*sizeof(foo) bytes from the memoryadress of the first element of a std::vector<std::pair<T1, T2> > myvect into an array of struct foo{ T1 first; ...
1
vote
1answer
38 views

Assigning and retrieving bit-wise memory value for Genetic Algo

I came across this code for developing a class for GA/GP but failed to understand it and hence unable debug the program. typedef struct { void *dataPointer; int length; } binary_data; ...
1
vote
3answers
182 views

memcpy in C# with different dataType

I am porting a c++ code into c#.There are 2 structures, as explained below. // Must be a total of 180 bytes typedef struct MAINTENANCE_PARAM` { BYTE bCommand; BYTE bSubCommand; USHORT ...
1
vote
1answer
408 views

What are the implications of performing a shallow copy on an array in order to resize it?

If my understanding of deep and shallow copying is correct my question is an impossible one. If you have an array (a[10]) and perform a shallow copy (b[20]) wouldn't this be impossible as the data in ...