美文网首页
STL 容器篇 -------序列式容器

STL 容器篇 -------序列式容器

作者: 平平文文点滴 | 来源:发表于2018-08-28 21:04 被阅读0次

    1.  vectors ----- dynamic array

           将元素放在dynamic array 中, 支持随机存取, 在尾部附加, 删除元素非常快。                  用法: vector<int> coll;     coll.push_back(i) ;   coll[i];

    2. Deques ------dynamic array 

           double-ended equeue

           用法:deque<float> coll;  coll.push_front;  coll[i]

    3.  List  ------------双向链表

      不支持随机存取, 在任何位置上执行安插或删除动作都非常迅速。                                           用法:list<char> coll;  coll.push_back(c);   coll.push_back();  coll.front();  coll..popo_front(); 

    4. Array

        只是一种型别,具有静态大小或动态大小的array.  没有size , empty 等成员函数。


    相关文章

      网友评论

          本文标题:STL 容器篇 -------序列式容器

          本文链接:https://www.haomeiwen.com/subject/hbtcwftx.html