Mid-level 5 min · March 06, 2026

STL Iterator Invalidation — Vector Reallocation Segfault

Intermittent segfault from vector reallocation when capacity exceeded.

N
Naren · Founder
Plain-English first. Then code. Then the interview question.
About
 ● Production Incident 🔎 Debug Guide
Quick Answer
  • Core concept: STL separates data storage, navigation, and operations into three independent layers connected by iterators
  • Key components: Containers (vector, map, set) own memory; iterators navigate; algorithms (sort, find) operate on iterator ranges
  • Performance insight: vector's contiguous memory gives cache-friendly iteration ~10x faster than list traversal
  • Production insight: std::remove doesn't erase — it partitions; missing .erase() leaves stale elements and undefined behavior
  • Biggest mistake: Using dependent containers without understanding iterator invalidation — causes silent corruption or crashes
Plain-English First

Imagine you're moving into a new house. Instead of building your own shelves, drawers, and filing cabinets from scratch, you go to IKEA and pick exactly what you need — pre-built, tested, and ready to use. The C++ STL is that IKEA for programmers. It gives you pre-built data structures (like shelves for your data) and tools (like algorithms to sort or search that data) so you stop reinventing the wheel on every project and spend your energy on the actual problem you're solving.

Every professional C++ codebase you'll ever work on uses the STL. It's not optional knowledge — it's the vocabulary of the language. When a senior engineer says 'just use an unordered_map here' or 'run a binary search on that sorted vector', they're speaking STL fluently. If you can't keep up, you'll spend interviews and code reviews translating a language everyone else already speaks.

Before STL landed in the C++ standard in 1998, every team reinvented the same tools: linked lists, sorting routines, search utilities. Each version had subtle bugs, slightly different interfaces, and zero interoperability. STL solved this by providing a unified, generic library where a sort algorithm works on any container, and a container works with any algorithm — all without sacrificing the raw performance C++ is known for.

By the end of this article you'll understand the three pillars of the STL — containers, iterators, and algorithms — and how they work together as a system, not in isolation. You'll know when to reach for a vector versus a map versus a set, how iterators act as the glue between containers and algorithms, and you'll have working, readable code patterns you can drop directly into your next project or interview.

The Three Pillars: How Containers, Iterators, and Algorithms Fit Together

Most tutorials teach STL components in isolation — here's vector, here's sort, here's next_permutation — and you're left wondering how they connect. They connect through iterators.

Think of it like a USB standard. Containers are the devices (hard drives, keyboards, phones). Algorithms are the software (your OS, apps). Iterators are the USB cable — a universal connector that lets any device talk to any software without either needing to know the other's internals.

A container owns your data and manages memory. An iterator is a lightweight object that points into a container and knows how to move through it. An algorithm takes two iterators (a begin and an end) and operates on whatever data lives between them. The algorithm doesn't care if it's a vector or a list — it just asks the iterator to advance, dereference, and compare. This separation is the architectural genius of STL.

This design also means you can write your own container or algorithm and plug it into the existing STL ecosystem immediately — as long as you respect the iterator contract. That's the power of generic programming at work.

stl_three_pillars.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <vector>      // Container: contiguous dynamic array
#include <algorithm>   // Algorithms: sort, find, count, etc.
#include <string>

namespace io::thecodeforge {
    // Example: employee names
}

int main() {
    // CONTAINER: vector holds our employee names in dynamic memory
    std::vector<std::string> employeeNames = {
        "Priya", "Carlos", "Aisha", "Dmitri", "Mei"
    };

    // ITERATOR: begin() and end() mark the range the algorithm will operate on.
    // std::sort doesn't know or care that this is a vector —
    // it just gets two iterators and works on whatever is between them.
    std::sort(employeeNames.begin(), employeeNames.end());

    std::cout << "Sorted employees:\n";
    // Range-based for loop: syntactic sugar over iterators internally
    for (const std::string& name : employeeNames) {
        std::cout << "  " << name << "\n";
    }

    // ALGORITHM + ITERATOR: find returns an iterator pointing to the result,
    // or end() if not found. Comparing to end() is the idiomatic check.
    auto searchResult = std::find(employeeNames.begin(), employeeNames.end(), "Mei");

    if (searchResult != employeeNames.end()) {
        // Dereference the iterator with * to get the actual value
        std::cout << "\nFound employee: " << *searchResult << "\n";
    }

    return 0;
}
Output
Sorted employees:
Aisha
Carlos
Dmitri
Mei
Priya
Found employee: Mei
The Golden Rule of STL:
An algorithm never touches a container directly — it only talks to iterators. This is why std::sort works on a vector, an array, and a deque without modification. Next time you wonder 'why does every algorithm take begin() and end()?', this is the answer.
Production Insight
The iterator abstraction is powerful but fragile: modifying a container while iterating can invalidate iterators, causing undefined behavior.
Common production bug: iterating over a vector while calling erase or insert leads to crashes or skipped elements.
Rule: never modify the container's size during iteration unless you capture the return value of insert/erase.
Key Takeaway
Containers own data, iterators navigate, algorithms transform.
None of the three components know each other's internals — they communicate solely through iterators.
This decoupling makes STL extensible and composable, but requires you to understand iterator invalidation rules.

Choosing the Right Container: Vector, Map, Set, and Unordered Variants

Picking the wrong container is the most expensive STL mistake you can make — not because your code won't compile, but because it'll be silently slow. The decision tree comes down to three questions: Do I need fast random access? Do I need sorted order? Do I need fast lookup by key?

A vector is a dynamic array. Elements live in contiguous memory, so indexing with [] is O(1) and cache performance is excellent. Use it as your default choice. When you need sorted order with no duplicates, use a set. When you need sorted key-value pairs, use a map. Both use a balanced BST internally — O(log n) for insert and lookup.

The unordered_ variants (unordered_map, unordered_set) use a hash table. Lookup, insert, and delete are O(1) average — but worst case is O(n) if your hash function causes collisions. They also don't maintain any sorted order. If you don't need iteration in sorted order and keys are hashable, unordered_map is almost always faster than map in practice.

The container you choose isn't just a data structure preference — it's a performance decision that compounds over millions of operations.

stl_container_comparison.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <string>

int main() {
    // --- VECTOR: best for ordered sequences you access by index ---
    std::vector<int> temperatures = {72, 68, 75, 71, 69};
    temperatures.push_back(74);  // O(1) amortized — appending is cheap
    std::cout << "Third temperature reading: " << temperatures[2] << "\n";

    // --- SET: unique elements, always sorted, O(log n) insert/lookup ---
    std::set<std::string> uniqueVisitors;
    uniqueVisitors.insert("user_9821");
    uniqueVisitors.insert("user_4453");
    uniqueVisitors.insert("user_9821");  // Duplicate — silently ignored by set
    std::cout << "\nUnique visitor count: " << uniqueVisitors.size() << "\n"; 

    // --- MAP: key-value, sorted by key, O(log n) lookup ---
    std::map<std::string, double> productCatalog;
    productCatalog["SKU-001"] = 29.99;
    productCatalog["SKU-002"] = 49.99;
    productCatalog["SKU-003"] = 9.99;

    std::cout << "\nProduct catalog (sorted by SKU):\n";
    for (const auto& [sku, price] : productCatalog) {  // Structured bindings (C++17)
        std::cout << "  " << sku << " -> $" << price << "\n";
    }

    // --- UNORDERED_MAP: O(1) average lookup, no sorted order ---
    std::unordered_map<std::string, int> wordFrequency;
    std::vector<std::string> words = {"apple", "banana", "apple", "cherry", "banana", "apple"};

    for (const std::string& word : words) {
        wordFrequency[word]++;
    }

    std::cout << "\nWord frequencies:\n";
    for (const auto& [word, count] : wordFrequency) {
        std::cout << "  " << word << ": " << count << "\n";
    }

    return 0;
}
Output
Third temperature reading: 75
Unique visitor count: 2
Product catalog (sorted by SKU):
SKU-001 -> $29.99
SKU-002 -> $49.99
SKU-003 -> $9.99
Word frequencies:
cherry: 1
banana: 2
apple: 3
Default Choice Rule:
Start with vector for sequences and unordered_map for key-value lookups. Only switch to map (sorted) or list (frequent middle insertions) when you have a concrete reason. Premature container optimization is as wasteful as premature algorithmic optimization.
Production Insight
A production service using std::map for a rapidly changing cache saw 40% higher latency compared to std::unordered_map — because the tree rebalancing overhead wasn't obvious in small benchmarks.
Another team's unordered_map hit O(n) performance when a custom hash function had a bug causing all keys to collide into one bucket.
Rule: always benchmark with realistic data sizes and key distributions before choosing your container.
Key Takeaway
Default to vector for sequences and unordered_map for key-value.
Only switch to map when you need sorted iteration or a guaranteed O(log n) worse case.
The wrong container can silently add 10x latency at scale.

STL Algorithms and Lambdas: Where the Real Power Lives

Most C++ developers use containers daily but underuse algorithms — and that's where half the STL's value is locked away. The <algorithm> header contains over 80 ready-to-use functions covering sorting, searching, transforming, partitioning, and more. Each one is battle-tested, optimized, and immediately tells the next developer reading your code exactly what's happening.

A raw for loop that filters elements is ambiguous — is it searching? Transforming? Deleting? Calling std::copy_if communicates intent instantly. This is why experienced engineers prefer algorithms: they're self-documenting at the call site.

The real unlock happened in C++11 with lambdas. Before lambdas, you had to write separate functor structs to customize algorithm behavior — verbose and scattered. Now you pass a lambda inline, right at the call site, and the compiler inlines it. The result is code that's both more expressive and often faster than hand-written loops because the compiler can aggressively optimize a lambda in a way it can't with a general loop body.

The erase-remove idiom is one critical pattern you must know: std::remove doesn't actually remove elements — it shuffles them to the back and returns an iterator to the new end. You then call container.erase() to actually delete them.

stl_algorithms_lambdas.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>    
#include <string>

namespace io::thecodeforge {
    struct Employee {
        std::string name;
        int yearsExperience;
        double salary;
    };
}

int main() {
    using io::thecodeforge::Employee;
    std::vector<Employee> team = {
        {"Priya",  8, 95000.0},
        {"Carlos", 2, 62000.0},
        {"Aisha",  5, 78000.0},
        {"Dmitri", 2, 65000.0},
        {"Mei",   11, 110000.0}
    };

    // --- std::sort with a lambda comparator ---
    std::sort(team.begin(), team.end(),
        [](const Employee& a, const Employee& b) {
            return a.salary > b.salary;  
        });

    // --- std::count_if: count senior employees ---
    int seniorCount = std::count_if(team.begin(), team.end(),
        [](const Employee& emp) {
            return emp.yearsExperience > 4;
        });

    // --- ERASE-REMOVE IDIOM ---
    team.erase(
        std::remove_if(team.begin(), team.end(),
            [](const Employee& emp) {
                return emp.yearsExperience < 3;  
            }),
        team.end()  
    );

    // --- std::accumulate: total payroll ---
    double totalSalary = std::accumulate(team.begin(), team.end(), 0.0,
        [](double runningTotal, const Employee& emp) {
            return runningTotal + emp.salary;
        });

    std::cout << "Total payroll after reorg: $" << totalSalary << std::endl;
    return 0;
}
Output
Total payroll after reorg: $283000
Watch Out: The Erase-Remove Trap
Never call std::remove_if alone and assume elements are gone. It returns an iterator — the elements are still in the vector, just shuffled to the end with undefined values. You must chain .erase() on the result or you'll silently iterate over garbage data. This is one of the most common STL bugs in real codebases.
Production Insight
In a code review, a developer wrote std::remove_if and forgot the erase. The vector's size() stayed the same, and subsequent iterations included stale elements causing incorrect aggregations. The bug went unnoticed for weeks.
Another team used std::count with a lambda instead of a raw loop for filtering — it was 30% slower in debug builds but equal in release due to inlining.
Rule: algorithms are as fast as hand-written loops in optimized builds; use them for clarity, not fear of performance.
Key Takeaway
Prefer STL algorithms over raw loops — they communicate intent and are as fast in optimized builds.
Always pair std::remove with .erase(); remember the erase-remove idiom.
Lambdas make algorithms practical; C++11 onward you have no excuse for writing separate functors.

Iterators Up Close: Random Access, Bidirectional, and Iterator Arithmetic

Iterator categories exist because not all containers are created equal. A vector stores elements contiguously in memory, so you can jump to any position in O(1) — that's a random access iterator. A linked list (std::list) must hop node-to-node, so it only supports moving one step at a time — that's a bidirectional iterator. An input stream can only move forward — that's an input iterator.

This matters because algorithms declare which iterator category they require. std::sort requires random access iterators — that's why you can't sort a std::list directly. std::list provides its own .sort() member function that understands the linked structure.

In practice, you'll use iterators in four patterns: range loops (most common), explicit iteration with ++ and != end(), iterator arithmetic on vectors (it + 3, end() - begin() for size), and reverse iteration with rbegin()/rend(). Knowing all four makes you fluent.

C++11's auto keyword transformed iterator code from verbose type declarations into clean, readable expressions. There's no reason to write std::vector<std::string>::iterator it when auto it says the same thing with less noise.

stl_iterators_in_depth.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include <vector>
#include <list>
#include <algorithm>
#include <string>

int main() {
    std::vector<std::string> logEntries = {
        "[INFO]  Server started",
        "[DEBUG] Connection opened",
        "[ERROR] Timeout on port 8080",
        "[INFO]  Retry attempt 1",
        "[ERROR] Retry failed"
    };

    // Pattern: Iterator arithmetic (Random-access only)
    auto thirdEntry = logEntries.begin() + 2;
    
    // Pattern: Finding index via distance
    auto errorIt = std::find_if(logEntries.begin(), logEntries.end(),
        [](const std::string& entry) { return entry.rfind("[ERROR]", 0) == 0; });

    if (errorIt != logEntries.end()) {
        auto errorIndex = std::distance(logEntries.begin(), errorIt);
        std::cout << "First error at index: " << errorIndex << "\n";
    }

    // Pattern: Reverse iteration
    std::cout << "Latest 2 logs (reverse):\n";
    int count = 0;
    for (auto rit = logEntries.rbegin(); rit != logEntries.rend() && count < 2; ++rit, ++count) {
        std::cout << "  " << *rit << "\n";
    }

    return 0;
}
Output
First error at index: 2
Latest 2 logs (reverse):
[ERROR] Retry failed
[INFO] Retry attempt 1
Interview Gold: Why Can't You Sort a std::list?
std::sort requires random-access iterators because it needs to jump to arbitrary positions in O(1) (e.g., to pick a pivot element). std::list only has bidirectional iterators — moving n positions costs O(n). That's why std::list has its own .sort() member that uses merge sort, which only needs forward traversal. Know this distinction cold.
Production Insight
Using std::distance on a list iterator is O(n) — if you call it frequently in a loop, expect quadratic runtime.
A common bug: using iterator arithmetic (it + n) on a bidirectional iterator (list) causes a compilation error. The fix is to use std::advance.
Rule: always check iterator category requirements when using iterator operations — let the compiler guide you.
Key Takeaway
Iterator categories are not abstract — they determine which algorithms compile.
Use auto to let the compiler deduce iterator types, but understand the underlying category.
Container::begin() for random access, container::rbegin() for reverse, std::distance for index calculation.

STL Memory & Performance: Allocators, Reserve, and Debugging

STL containers are generic, but their memory behavior can bite you in production. Every vector has a capacity and size. When size exceeds capacity, the vector allocates a new block (typically doubling size) and moves all elements. This invalidates all iterators. The solution: call reserve() if you know the final size upfront.

Allocators let you customize how containers acquire memory. The default uses new/delete, but you can plug in a pool allocator (e.g., std::pmr::monotonic_buffer_resource) to reduce fragmentation and speed up allocations. Boost pool and custom allocators are common in high-frequency trading and game engines.

Debugging STL memory issues: Use address sanitizer (-fsanitize=address) to catch iterator invalidation. Use valgrind to detect memory leaks from std::shared_ptr cycles. Use _GLIBCXX_DEBUG to enable checked iterators in debug mode — they catch out-of-bounds access at runtime.

The STL's default allocator is thread-safe (locks on allocation), but std::pmr containers are not thread-safe by default — you must synchronize access.

stl_memory_performance.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <iostream>
#include <vector>
#include <memory_resource>  // std::pmr
#include <array>

namespace io::thecodeforge {
    
    // Using a monotonic buffer resource for fast, non-thread-safe allocations
    void pmr_example() {
        // Buffer on the stack — no heap allocs from this resource
        std::array<std::byte, 1024> buffer;
        std::pmr::monotonic_buffer_resource pool{buffer.data(), buffer.size()};
        
        // Container that uses the pool
        std::pmr::vector<int> fastVector{&pool};
        fastVector.reserve(10);  // no allocation after this if within buffer
        
        for (int i = 0; i < 10; ++i) {
            fastVector.push_back(i);  // all memory from stack buffer
        }
        
        std::cout << "PMR vector size: " << fastVector.size() << "\n";
    }
}

int main() {
    // Bad: repeated push_back without reserve
    std::vector<int> bad;
    for (int i = 0; i < 1000000; ++i) {
        bad.push_back(i);  // ~20 reallocations
    }
    
    // Good: reserve upfront
    std::vector<int> good;
    good.reserve(1000000);  // zero reallocations
    for (int i = 0; i < 1000000; ++i) {
        good.push_back(i);
    }
    
    io::thecodeforge::pmr_example();
    return 0;
}
Output
PMR vector size: 10
Capacity vs. Size Mental Model
  • Reserve sets up empty folders — no move cost later.
  • Resize creates files (default constructs elements).
  • Shrink_to_fit() asks the OS to trim the cabinet — may not actually release memory.
  • Using reserve() correctly can eliminate 90% of reallocation-induced iterator bugs.
Production Insight
A trading application used std::vector with push_back in a hot path — 17 reallocations per connection, each copying ~10KB. Switching to reserve(1024) reduced per-connection latency from 2ms to 50us.
Another team's server had heaps fragmentation because each container allocated separately. They pooled allocations using std::pmr and saw 30% less memory usage.
Rule: measure with real data; preallocate when the number of elements is bounded.
Key Takeaway
Use reserve() when you know the element count — it avoids reallocations and iterator invalidation.
Custom allocators (pmr) can reduce fragmentation and allocation overhead in latency-sensitive code.
Debug with address sanitizer and _GLIBCXX_DEBUG to catch iterator invalidation early.
● Production incidentPOST-MORTEMseverity: high

The Silent Crash: Iterator Invalidation After Vector Reallocation

Symptom
Intermittent segfault in production when iterating over a vector of active connections. The crash happened only when the connection pool grew beyond its current capacity.
Assumption
The developer assumed that iterators remain valid after any push_back operation. They stored an iterator to the beginning of the vector for fast insertion of heartbeat messages.
Root cause
vector::push_back triggered a reallocation when the size exceeded capacity. All iterators, pointers, and references to elements became invalid. The cached iterator pointed to freed memory, causing undefined behavior on dereference.
Fix
Replaced cached iterator pattern with index-based access (size_t) and used std::vector::reserve() to pre-allocate space for the maximum expected number of connections. Also switched to std::deque for the connection list, which does not invalidate iterators on push_back.
Key lesson
  • Never store iterators across operations that can reallocate (insert, push_back, emplace, resize).
  • Use reserve() to pre-allocate when you know bounds at construction.
  • Prefer indices over iterators when you need stable access in a growing vector, or switch to a node-based container like deque or list.
Production debug guideQuick diagnosis of the three most common STL failures4 entries
Symptom · 01
Container size unchanged after std::remove or std::remove_if
Fix
You forgot to chain .erase(). std::remove only shuffles elements — it does not shrink the container. Always pattern: container.erase(std::remove(...), container.end()).
Symptom · 02
Segfault when iterating a vector after push_back or insert
Fix
Check if the operation caused a reallocation. Verify capacity before and after. Use address sanitizer (-fsanitize=address) to detect use of invalid iterators.
Symptom · 03
std::list is slower than std::vector for iteration, even for middle insertions
Fix
Recheck your assumptions. std::list has poor cache locality. Often a std::vector with elements swapped/removed using erase-remove or std::partition is faster. Profile with a microbenchmark before choosing std::list.
Symptom · 04
std::sort compiles but crashes on custom comparator
Fix
Your comparator must establish a strict weak ordering. Check for missing const, returning true on equal elements, or missing operator<. Use std::sort with a lambda that returns a < b correctly.
★ STL Debug Cheat SheetFive common STL failures and exact fix commands/actions
Segfault after vector resize
Immediate action
Collect core dump and call stack
Commands
gdb ./myapp core.12345
bt full
Fix now
Check for iterator stored before push_back. Replace with index or call reserve() before the loop.
std::map lookup returns default value for missing key+
Immediate action
Look for use of operator[] instead of find()
Commands
grep -rn 'mapName\[' src/
compile with -D_GLIBCXX_DEBUG
Fix now
Replace operator[] with map.find(key) != map.end() for existence checks; use at() for read-only access.
vector size() does not decrease after remove_if+
Immediate action
Search for missing .erase()
Commands
grep -n 'std::remove_if' src/
check the line: does it end with container.erase(...)?
Fix now
Change to: container.erase(std::remove_if(container.begin(), container.end(), pred), container.end()).
std::sort crashes with 'invalid comparator'+
Immediate action
Check if comparator returns true for equal elements
Commands
catch signal 6 (SIGABRT)
run with -D_GLIBCXX_DEBUG 2>&1 | grep 'strict weak ordering'
Fix now
Ensure comparator returns false when elements are equal; use std::tie or default operator<.
Excessive memory usage with std::map+
Immediate action
Check if you need sorted order
Commands
valgrind --tool=massif ./myapp
massif-visualizer massif.out.12345
Fix now
Switch to std::unordered_map if key order is not needed. If map is needed, consider std::flat_map from C++26 or boost::flat_map.
STL Container Comparison at a Glance
ContainerUnderlying StructureLookup ComplexityInsert/DeleteSorted?Best Use Case
vectorDynamic contiguous arrayO(1) by indexO(1) end, O(n) middleNoDefault sequence container, cache-friendly iteration
listDoubly linked listO(n) linear scanO(1) with iteratorNoFrequent insertions/deletions in the middle of a sequence
dequeChunked arraysO(1) by indexO(1) front and backNoQueue/stack where you need push/pop from both ends
setRed-Black Tree (BST)O(log n)O(log n)Yes (ascending)Unique sorted elements, membership testing
mapRed-Black Tree (BST)O(log n) by keyO(log n)Yes (by key)Sorted key-value pairs, ordered iteration over keys
unordered_setHash TableO(1) averageO(1) averageNoFast membership testing, order doesn't matter
unordered_mapHash TableO(1) averageO(1) averageNoFast key-value lookup, e.g. caches, frequency counts
stackAdapter over dequeO(1) top onlyO(1) push/popNoLIFO operations — call stacks, undo systems
queueAdapter over dequeO(1) front onlyO(1) push/popNoFIFO operations — task queues, BFS traversal
priority_queueMax-heap over vectorO(1) max elementO(log n)No (heap order)Always access the highest-priority element first

Key takeaways

1
STL's power comes from separation of concerns
containers own data, iterators navigate it, and algorithms operate on iterator ranges — none of the three needs to know the others' internals.
2
Default to vector for sequences and unordered_map for key-value lookups; only switch to map (sorted), set (unique), or list (mid-sequence mutations) when you have a specific, measurable reason.
3
std::remove and std::remove_if are NOT destructive
they shuffle unwanted elements to the back and return a new logical end; you must call container.erase() on that result to actually free the memory.
4
Iterator categories (random access, bidirectional, forward) aren't just theory
they determine which algorithms compile for which containers, which is why std::sort works on vector but not list.
5
Use reserve() to pre-allocate vector capacity when the number of elements is known upfront
this eliminates reallocations and iterator invalidation.

Common mistakes to avoid

5 patterns
×

Using std::remove or std::remove_if without .erase()

Symptom
The vector size stays unchanged after the call. Iterating to the end shows garbage or stale elements, causing incorrect results or crashes.
Fix
Always chain .erase() on the iterator returned by std::remove/std::remove_if: container.erase(std::remove(...), container.end()).
×

Invalidating iterators by modifying a vector during iteration

Symptom
Crashes or skipped elements in a loop that inserts or erases elements while iterating via iterators. No compile-time error — occurs at runtime.
Fix
Use index-based loops for mutable iteration over vector, or collect changes and apply after the loop. For erase, use container.erase(iter) which returns the next valid iterator.
×

Using map::operator[] to check for key existence

Symptom
A default-constructed value (0, empty string, etc.) is silently inserted for keys that don't exist. The map grows unexpectedly and logic conditions fail silently.
Fix
Use map.find(key) != map.end() or map.count(key) > 0 for existence checks. Use operator[] only when you want to assign or access with default insertion.
×

Assuming std::list is faster than std::vector for many insertions

Symptom
Slower performance than expected because cache misses dominate. std::list has O(1) insertion but high constant overhead due to node sizes and cache-unfriendly access.
Fix
Benchmark with realistic data. Often std::vector with erase-remove or std::partition outperforms std::list even for many middle insertions.
×

Using std::sort with a comparator that doesn't establish a strict weak ordering

Symptom
std::sort crashes with SIGABRT in debug mode due to 'invalid comparator' assertion. In release, it may produce wrong order or infinite loop.
Fix
Ensure comparator returns false when elements are equal. Use std::tie or default operator< when possible. Test with duplicate elements.
INTERVIEW PREP · PRACTICE MODE

Interview Questions on This Topic

Q01SENIOR
Explain the difference between O(1) average time and O(n) worst-case tim...
Q02JUNIOR
Given an array of integers, how would you use a std::unordered_set to fi...
Q03SENIOR
Why does C++ favor std::vector over std::list even for insertions that a...
Q04JUNIOR
What is the time complexity of std::sort in the STL? Does it use Quickso...
Q05SENIOR
How do you handle custom objects as keys in a std::map versus a std::uno...
Q01 of 05SENIOR

Explain the difference between O(1) average time and O(n) worst-case time in std::unordered_map. What causes the worst case?

ANSWER
Average O(1) assumes a good hash function and load factor. Worst-case O(n) occurs when many keys collide into the same bucket, causing the hash table to degrade into a linked list (or tree in libstdc++ after threshold). This can happen with a poorly designed hash function, a large input of colliding keys (e.g., malicious input), or if the load factor is too high and rehashing is expensive. In practice, std::unordered_map uses per-bucket linked lists and rehashes when load factor exceeds max_load_factor.
FAQ · 5 QUESTIONS

Frequently Asked Questions

01
What happens to iterators when a vector reallocates its memory?
02
Is the C++ STL thread-safe?
03
What's the difference between a container's size() and capacity() for a vector?
04
Can I use std::sort on a std::list?
05
What is the erase-remove idiom and why is it needed?
🔥

That's STL. Mark it forged?

5 min read · try the examples if you haven't

Previous
Aggregate Initialisation in C++
1 / 11 · STL
Next
STL Vectors in C++