标签:str 乘法 swap code 交换 wap pre 溢出 amp
引入temp暂存其中一方的值
void swap(int &a,int &b)
{
int temp;
temp=a;
a=b;
b=temp;
}
void swap(int &a,int &b)
{
a=a+b;
b=a-b;
a=a-b;
}
缺点:注意加法不要溢出
void swap(int &a,int &b)
{
a=a+b;
b=a-b;
a=a-b;
}
缺点:注意加法不要溢出
void swap(int &a,int &b)
{
a=a^b;
b=a^b;
a=a^b;
}
优点:无需考虑溢出
标签:str 乘法 swap code 交换 wap pre 溢出 amp
原文地址:https://www.cnblogs.com/wwj321/p/12327072.html