看板 Programming 關於我們 聯絡資訊
※ 引述《IsfunHDS (Isfun)》之銘言: : void swap(int &x,int &y) : { : x=x^y; : y=x^y; : x=x^y; : } : 這個是用call by ref : 不過是用位元運算 速度比較快 void swap(int&x,int&y){x^=y^=x^=y;} -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 122.100.86.180
a1234957:有差嗎 不過是縮短列數 122.123.5.4 06/01 14:52
jtmh:這個有可能造成 undefined behavior218.175.148.121 06/01 15:11