2013年5月1日 星期三

面試必備 -- 數值swap

數值swap

程式碼:

int swap(int a, int b) {
    a = a^b;
    b = a^b;
    a = a ^b;
}

沒有留言:

張貼留言