【C++】swap函数C++ swap
C++ swaptemplate<class T>void swap(T &a,T &b){ T c(a); a=b; b=c;}void swap(int& a, int& b){ a=a+b;