STL
ZenZenZ
如是相,如是性,如是体,如是力,如是作,如是因,如是缘,如是果,如是报,如是本末究竟。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
《STL源码剖析》--defalloc.h
// Filename: defalloc.h // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 /* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission转载 2015-03-25 14:30:48 · 546 阅读 · 0 评论 -
void qsort (void* base, size_t num, size_t size, int (*compar)(const void*,const void*)
function <cstdlib> qsortvoid qsort (void* base, size_t num, size_t size, int (*compar)(const void*,const void*));Sort elements of array Sorts the num elements of the array pointed by bas原创 2015-03-25 11:04:46 · 1762 阅读 · 0 评论 -
《STL源码剖析》--stl_alloc.h
// Filename: stl_alloc.h // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 // 特别说明: SGI STL的allocator在我的编译环境下不使用内存池 // 而其内存池不进行内存释放操作, 其转载 2015-03-25 14:34:00 · 542 阅读 · 0 评论 -
C++ STL源码剖析-- stl_config.h
// Filename: stl_config.h // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 /* * Copyright (c) 1996-1997 * Silicon Graphics Computer Systems, I转载 2015-03-25 14:29:05 · 731 阅读 · 0 评论 -
《STL源码剖析》--<memery>
// Filename: memory // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 // 智能指针在STL中只有一个auto_ptr, 用于对原生指针的生命周期进行管理, // 但是其本身有许多另其不安全的特性, 例如以一个auto_转载 2015-03-26 10:52:27 · 518 阅读 · 0 评论 -
《STL源码剖析》--<stl_construct.h>
// Filename: stl_construct.h // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 /* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permi转载 2015-03-26 10:54:53 · 645 阅读 · 0 评论 -
《STL源码剖析》--<stl_uninitialized.h>
// Filename: stl_uninitialized.h // Comment By: 凝霜 // E-mail: mdl2009@vip.qq.com // Blog: http://blog.csdn.net/mdl13412 // 主要接口: // // template // inline ForwardIterator /转载 2015-03-26 10:56:15 · 653 阅读 · 0 评论 -
STL--for_each()
function template<algorithm>std::for_each template <class InputIterator, class Function> Function for_each (InputIterator first, InputIterator last, Function fn); Apply function to range Appli翻译 2015-03-24 18:34:08 · 590 阅读 · 0 评论 -
STL--find()
function template<algorithm>std::findtemplate <class InputIterator, class T>InputIterator find (InputIterator first, InputIterator last, const T& val);Find value in range Returns an iterator to the fi原创 2015-03-25 10:40:04 · 541 阅读 · 0 评论
分享