Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in stl

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

Why use iterators instead of array indices?

vector vs. list in STL

c++ list vector stl

Is std::unique_ptr<T> required to know the full definition of T?

Determine if map contains a value for a key?

c++ stl map

Sorting a vector of custom objects

c++ stl sorting