#

stl

  • STL 之 operator new 函数

    在STL源码剖析中有提到operator new 这个函数,然后也有说道new 的下面会调用operator new,博主觉得这段话有问题,原因有二:1、operator 是操作符的关键字,比如我们要

    作者:CLEVERlBOY
    2020-08-17 23:54:11
  • STL iterator delete problem

    years ago carl report problem in chinaunix.net: bug of stl on hpux.when delete some element in the s

    作者:wangzh3
    2020-08-14 21:59:10
  • STL-空间配置器

    1、为什么需要空间配置器?内存碎片:频繁分配小内存导致分配不出来大内存,这就是外碎片;并且频繁分配小内存效率低比如,系统依次分配了16、8、16、4、8byte,还剩一个8byte未分配,这时要分配一

    作者:追梦途中
    2020-08-06 04:11:27
  • STL: vector容器成员函数resize的作用

    #include #include #include #include 

    作者:闭上左眼
    2020-08-05 22:02:10
  • 初识STL

    基本概念>>STL(Standard Template Library)是C++标准库的最重要的组成部分,STL(标准模板库)不仅是一个可复用的组件库,而且是一个包罗算法和数据结构的软件框

    作者:柠公子
    2020-08-05 11:09:27
  • C++ STL stack 括号匹配 源代码

    // STL_stack.cpp : 定义控制台应用程序的入口点。 // STL 栈stack #include "stdafx.h" #include #incl

    作者:忘记江南
    2020-08-04 02:45:07
  • STL中迭代器 (Iterator) 的简单实现

       #pragma once struct InputIteratorTag {}; struct OutputIterator

    作者:shangluyi
    2020-08-02 21:47:53
  • STL查找、排序、替换、集合算法

    1、STL查找算法(1)、代码如下:#include #include #include using&nb

    作者:汇天下豪杰
    2020-07-25 21:27:04
  • STL中空间配置器(allocator)的简单实现

    包括一级空间配置器 和 二级空间配置器#pragma once #include  using namespace std;

    作者:shangluyi
    2020-07-25 18:01:03
  • STL标准库中string,vector,list使用的异同点

    我们一起来学习常用接口string类常见构造: 函数名 功能说明 string() 构造空的string类对象,即空字符串 string(const ch

    作者:梦T醒
    2020-07-25 00:51:52