//Java实现
/*方法1*/
void swap(
int a,int b)
{
= a + b;
= a - b;
= a - b;
}
/*方法2--异或*/
void swap(
int a,int b)
{
= a^b;
= a^b;
= a^b;
}