Swapping variables.

http://www.azillionmonkeys.com/qed/case3.html

 

 

#define swap(a,b) { /
        (a) ^= (b);     /
        (b) ^= (a);     /
        (a) ^= (b);     /
    }

 

#define swap(a,b) {  /
        (a) += (b);      /
        (b) = (a) - (b); /
        (a) -= (b);      /
    }

 

 

More slick expression

#define swap(a,b) { a ^= b ^= a ^= b; }


But here
http://c-faq.com/cpp/swapmacro.html.

It seems it is not a good way to use a macro .

------------------------------------------------------------------------------------------------------------------------------------------------
There is no good answer to this question.
If the values are integers, a well-known trick using exclusive-OR


could perhaps
be used,
but it will not work for floating-point values or
pointers,
or if the two values are the same variable.
(See questions 3.3b and 20.15c .)
If the macro is intended to be
used on values of arbitrary type
(the usual goal),
any solution involving a temporary variable is problematical,
because:
  • It's hard to give the temporary a name that won't clash with anything. (Any name you pick might be the actual name of one of the variables being swapped. If you tried using ## to concatenate the names of the two actual arguments, to ensure that it won't match either one, it might still not be unique if the concatenated name is longer than 31 characters, [footnote] and it wouldn't let you swap things like a[i] that aren't simple identifiers. You could probably get away with using a name like _tmp in the ``no man's land'' between the user and implementation namespaces; see question 1.29 .)
  • Either it can't be declared with the right type (because standard C does not provide a typeof operator), or (if it copies objects byte-by-byte, perhaps with memcpy , to a temporary array sized with sizeof ) the macro can't be used on operands which are declared register .

The best all-around solution is probably to forget about using a macro, unless you're willing to pass in the type as a third argument. (Also, if you're trying to swap entire structures or arrays, you probably want to exchange pointers instead.) If you're worried about the use of an ugly temporary, and know that your machine provides an efficient exchange instruction, convince your compiler vendor to recognize the standard three-assignment swap idiom in the optimization phase.

If you're consumed by a passionate desire to solve this problem once and for all, please reconsider; there are better problems worthier of your energies.


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值