摘要: #include <iostream> #include <string> using namespace std; template <class T> void MySwap(T &a, T &b){ T temp = a; a = b; b = temp; } template <class 阅读全文
posted @ 2021-01-30 12:40 ziwuxian 阅读(99) 评论(0) 推荐(0) 编辑