编程随想录
CSDN拆迁户 @2014-04-07

导航

 

2012年9月5日

摘要: 常用容器vector, list, map, sethttp://www.cplusplus.com/reference/stl/vector/(1.1)vector的头文件#include using std::vector;vector v_ints;或std::vector v_ints;(1.2)vector的构造vector first; // empty vector of intsvector second (4,100); // four ints with value 1... 阅读全文
posted @ 2012-09-05 14:57 dos5gw 阅读(178) 评论(0) 推荐(0)