Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

In which scenario do I use a particular STL container?

c++ stl container-data-type

Is std::vector copying the objects with a push_back?

c++ stl stdvector

Throwing the fattest people off of an overloaded airplane.

c++ algorithm sorting stl

In STL maps, is it better to use map::insert than []?

c++ dictionary stl insert stdmap

Why are Standard iterator ranges [begin, end) instead of [begin, end]?

c++ stl iterator standards

Why is std::map implemented as a red-black tree?

Thou shalt not inherit from std::vector

c++ oop inheritance stl vector

Why use non-member begin and end functions in C++11?

What is the purpose of std::make_pair vs the constructor of std::pair?

c++ stl std-pair

Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)

c++ oop templates stl

What really is a deque in STL?

c++ stl deque

C++ equivalent of StringBuffer/StringBuilder?

C++ STL Vectors: Get iterator from index?

c++ stl vector iterator

Why is it wrong to use std::auto_ptr<> with standard containers?

c++ stl raii auto-ptr c++-faq

How do I print the elements of a C++ vector in GDB?

c++ debugging stl vector gdb

Is std::vector so much slower than plain arrays?

How to convert wstring into string?

c++ unicode stl wstring

Remove spaces from std::string in C++

c++ string stl whitespace

Why can I not push_back a unique_ptr into a vector?

C++ sorting and keeping track of indexes

c++ sorting stl indexing