11 2021 档案

摘要:1.实验任务2 验证性实验。 在C++编码环境中,输入task2.cpp。 task2.cpp: 1 #include <iostream> 2 #include <typeinfo> 3 4 // definitation of Graph 5 class Graph 6 { 7 public: 阅读全文
posted @ 2021-11-26 19:14 热橙汁 阅读(43) 评论(3) 推荐(0)
摘要:实验任务4: 不使用标准库模板类vector,自己动手设计并实现一个动态的整型数组类Vector_int。 程序包括vector_int.hpp和task4.cpp。 vector_int.hpp: 1 #ifndef VECTOR_INT_HPP 2 #define VECTOR_INT_HPP 阅读全文
posted @ 2021-11-07 10:29 热橙汁 阅读(37) 评论(3) 推荐(0)