摘要: Vector:一个容器,可以构建链表等数据结构 #include<vector> using namespace std; 创建一个vector对象 vector <int> I1; //一个int型的空的vector对象I1 vector <int> I2(500); //包含500个int类型数 阅读全文
posted @ 2020-03-24 23:12 ShineLe 阅读(326) 评论(0) 推荐(0)