摘要: 1 #include "stdafx.h" 2 typedef int Rank; //秩 3 #define DEFAULT_CAPACITY 3 //默认的初始容量(实际应用中可设置为更大) 4 5 template class Vector 6 { //向量模板类 7 protected: 8 Rank _size; int _c... 阅读全文
posted @ 2017-05-24 21:09 稻草人部落 阅读(1115) 评论(0) 推荐(0) 编辑