随笔 - 0, 文章 - 0, 评论 - 0, 引用 - 0
数据加载中……
template <class type>
void swap(type &a,type &b)
{
type temp=a;
a=b;
b=temp;
}