标签:style amp size 方法 on 变量 void swap
1.void swap(int &x, int &y){
int temp=x;
x=y;
y=temp;
}
2.void swap(int &x, int &y){
x=x+y;
y=x-y;
x=x-y;
}
3.void swap(int &x, int &y){
x=x-y;
y=x+y;
x=y-x;
}
4.void swap(int &x, int &y){x=x^y;
y=x^y;
x=x^y;
}
标签:style amp size 方法 on 变量 void swap
原文地址:http://blog.csdn.net/lands92/article/details/38305791