摘要: STL笔记 vector(变长数组),倍增的思想,支持比较运算(按字典序) 定义: ​ vector <int> a; 定义:一个vector数组a ​ vector <int> a(10); 定义:一个长度为10的vector数组a ​ vector <int> a(10,3);定义:一个长度为1 阅读全文
posted @ 2021-11-02 13:58 Owwkmidream 阅读(53) 评论(0) 推荐(0)