Tags: #stl #memoryusage
http://lemire.me/blog/2016/09/15/the-memory-usage-of-stl-containers-can-be-surprising/
"One of the benefits of C++ is the built-in STL containers offering the standard data structures like vector, list, map, set. They are clean, well tested and well documented."
http://lemire.me/blog/2016/09/15/the-memory-usage-of-stl-containers-can-be-surprising/
"One of the benefits of C++ is the built-in STL containers offering the standard data structures like vector, list, map, set. They are clean, well tested and well documented."
Tags: #stl #standardtemplatelibrary
"The Standard Template Library (STL) is the modern C++ programmer's best friend. It contains a wealth of data structures, algorithms, and utility libraries from which we can build almost anything — but only if we know how to use it correctly and efficiently. "
http://voidae.com/blog/2016/9/28/stl-from-scratch-introduction
"The Standard Template Library (STL) is the modern C++ programmer's best friend. It contains a wealth of data structures, algorithms, and utility libraries from which we can build almost anything — but only if we know how to use it correctly and efficiently. "
http://voidae.com/blog/2016/9/28/stl-from-scratch-introduction
void (almost everywhere)
STL From Scratch - Introduction
update on Sept. 29th: I've modified the schedule of the first two posts to
split-out integer sequences and the rest of the header from our
implementation of pairs and tuples.
If you're interested in discussing this, consider checking out the reddit…
split-out integer sequences and the rest of the header from our
implementation of pairs and tuples.
If you're interested in discussing this, consider checking out the reddit…
Tags: #memory #usage #stl
The C++ standard doesn’t dictate exact implementation details for standard library classes, so it’s unsurprising that details of memory usage are missing from most references.
http://info.prelert.com/blog/stl-container-memory-usage
The C++ standard doesn’t dictate exact implementation details for standard library classes, so it’s unsurprising that details of memory usage are missing from most references.
http://info.prelert.com/blog/stl-container-memory-usage
Prelert
STL Container Memory Usage when Developing with C++
When writing C++ code for many platforms the STL container memory usage can vary between implementations (Microsoft, GNU, etc). Make the right tradeoffs.
Tags: #STL #Algorithms
" Knowing your STL algorithms also gives you an idea of what types of abstractions are useful, which gives you a model to write your own ones. So we should strive to know our algorithms."
http://www.fluentcpp.com/stl-learning-resource/
" Knowing your STL algorithms also gives you an idea of what types of abstractions are useful, which gives you a model to write your own ones. So we should strive to know our algorithms."
http://www.fluentcpp.com/stl-learning-resource/
Fluent C++
STL learning resource
Expressive code in C++
Tutorial and examples for std::array
#STL #array #tutorial
http://thispointer.com/c11-stdarray-tutorial-and-examples/
#STL #array #tutorial
http://thispointer.com/c11-stdarray-tutorial-and-examples/