2016年8月19日
摘要: STL 一、vector动态数组 1 包含头函数 #include<vector> 2 函数的声明: vector<int> v; vector<int> v[maxn]; vector<int> v(100,1); //100个1 3 操作常用: v.push_back(x); 在最后添加一个元素 阅读全文
posted @ 2016-08-19 12:07 qzgxlx 阅读(99) 评论(0) 推荐(0) 编辑