标签:
void
swap_int(
int
*a,
*b){
*a=*a+*b;
*b=*a-*b;
*a=*a-*b;
}
关于交换函数(1)
原文地址:http://www.cnblogs.com/upup-2015/p/5035399.html