C++
趁风人
这个作者很懒,什么都没留下…
展开
-
STL中的sort源码分析
title: STL中的sort源码分析date: 2020-12-08 20:43:11tags: STL | source codecategories: C++ | STL前言本文采用gcc5.4.0版本的STL进行分析,链接:在线源码。在下文的分析中都具体指出了对应文件的多少行,方便读者对照查看。如你想要在自己电脑上查看源码,相信你已经安装了gcc,STL绝大多数源码都位于/usr/include/c++/10.2.0/bits目录下。我们都听说sort()内部是使用快速排序,但是实际.原创 2020-12-09 01:27:20 · 909 阅读 · 0 评论 -
从源码角度分析string内存分布
title: 从源码角度分析string内存分布date: 2020-12-04 20:49:32tags: C++ | stringcategories: source code | C++文章目录title: 从源码角度分析string内存分布date: 2020-12-04 20:49:32tags: C++ | stringcategories: source code | C++前言string是basic_string的特化版本阅读allocator源码__glibcxx_bas.原创 2020-12-04 21:50:08 · 482 阅读 · 0 评论