Tag: vector
All the articles with the tag "vector".
-
C++ Sort Vector of Structs: By Field with std::sort
Learn how to sort a vector of structs in C++ using std::sort with a lambda comparator. Sort by any field, ascending or descending, and by multiple keys.
-
C++ STL Containers: Choosing the Right One
Learn which C++ STL container to use and when. Covers vector, list, map, set, unordered_map and more with comparisons, complexity, and real-world examples.