Re: efficient swap method
On Nov 1, 2:47 pm, Victor Bazarov <v.Abaza...@comAcast.net> wrote:
forums...@hotmail.com wrote:
Consider:
template < typename T, unsigned int size>
inline T swap_bytes ( T const value ) {
// assert macro
union {
T value;
char bytes[ size ];
} input, output;
input.value = value;
for ( unsigned int idx = 0; idx < size / 2; ++idx )
{
output.bytes[ idx ] = input.bytes[size - 1 - idx ];
output.bytes[size - 1 - idx ] = input.bytes[ idx ];
}
return output.value;
}
Interested in perhaps a more efficient means to achieve the
same objective?
Not really.
Oh.. That wasn't a question, was it?
Benchmarks over a million interations shows the funciton
above as approximately ~55% of my total number. std::swap
if memory serves is linear time so .. i'm wondering (laptop
got fried last night so I'm unable to check) if a standard
swap approach would eb more prudent
Why TF do you ask when it's possible only for you to answer -
by trying and measuring? Seriously, dude, use 'std::swap' and
see.
His function doesn't do the same thing as std::swap. It looks
more like a value oriented version of std::reverse, i.e.
something like:
template< typename T, unsigned int size >
T reverse_bytes( T value )
{
std::reverse( reinterpret_cast< char* >( &value ),
reinterpret_cast< char* >( &value ) + size);
return value;
}
But the interface still looks a bit screwy: you have to
explicitly state each template argument. And it's not really
applicable except to arrays of char, since anything else will
result in undefined behavior, and a mess. And if T is an array
type, you can't pass or return it by value. And if it is a
container, you don't need the size argument; I could see some
argument for a function:
template< typename Container >
Container
reverse( Container c )
{
std::reverse( c.begin(), c.end() );
return c;
}
But using std::reverse_copy is likely to be faster most, if not
all of the time.
--
James Kanze