16/6

作者: hannah1123 | 来源:发表于2022-04-28 09:20 被阅读0次

    back_insert_iterator:在末尾插入数据

    容器的种类:

    定义:用于装数据的,不同容器操作数据方式不同。

    11个种类:deque、list、queue、priority_queue、stack、vector、map、multimap、set、bitset、新增:forward_list、unordered_map、unordered_multimap、unordered_set、unordered_multiset

    remove(n)移出元素n

    splice()合并两个容器到另一个容器中

    unique()踢出连续的重复元素,只保留一个,不连续的重复元素保留

    sort:排序,默认从小到大

    merge:合并两个容器内容,两个容器是同一种容器同一个类型如list<int>

    相关文章

      网友评论

        本文标题:16/6

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