摘要: #ifndef finalproject_Header_h#define finalproject_Header_h#include #include #include #include using namespace std;template class myvector{private:int capacity_of_vector;int size_of_vector;T* array;public://return the current length of the vectorint size(){return size_of_vector;}// return the current 阅读全文
posted @ 2013-12-05 10:13 Guybrush Threepwood 阅读(149) 评论(0) 推荐(0)