摘要: #include <iostream> using namespace std; bool Greater2(int n1, int n2) { return n1 > n2; } bool Greater1(int n1, int n2) { return n1 < n2; } bool Grea 阅读全文
posted @ 2022-02-24 17:54 icefield817 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <cstring> using namespace std; template <class T> class myclass { // 在此处补充你的代码 public: T * p; int size; 阅读全文
posted @ 2022-02-24 13:14 icefield817 阅读(42) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> using namespace std; template <class T> class CMyistream_iterator { // 在此处补充你的代码 public: T a; CMyistream_iterato 阅读全文
posted @ 2022-02-24 11:56 icefield817 阅读(85) 评论(0) 推荐(0) 编辑