vector和list內存結構

vector是std庫提供的相似於數組的容器,在使用C語言數組的時候會遇到限制,數組大小不能動態擴展。 vector就是應對數組限制的一種支持動態增加容器。 首先看下面的實例   #include <vector> int main(int argc ,char **argv) {  std::vector<int> vector;  vector.push_back(1);  vector.pu
相關文章
相關標籤/搜索