11 2021 档案

摘要:实验二 task2.cpp #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: virtual void draw() { std::cout << "Graph::draw() 阅读全文
posted @ 2021-11-25 12:52 Re-cursion 阅读(36) 评论(3) 推荐(0)
摘要:实验任务4 vector_int.hpp #include<iostream> #include<cassert> using namespace std; class Vector_int{ public: Vector_int(int Size,int Value = 0); Vector_in 阅读全文
posted @ 2021-11-07 19:11 Re-cursion 阅读(42) 评论(4) 推荐(1)