Basic Framework
Structureleetcoderesearch-card

LeetCode Card 293 — Graph BFS / Structure

Graph BFS — BASIC step map

Pattern signal

This pattern usually appears when the prompt involves shortest path in an unweighted graph, nearest transformation, or wavefront exploration. Rotting Oranges, Word Ladder, minimum steps problems, and nearest-neighbor traversals often use BFS.

This distinction trips up experienced engineers too.

What Structure means here

In BASIC, the Structure step is where you state the invariant, helper contract, or control-flow skeleton before coding. For Graph BFS, that matters because the pattern only becomes useful once the candidate is explicit about what is being tracked, reduced, or preserved.

Interview move

A strong move is to make the plan visible before full execution. In this pattern family, say out loud what representation makes the problem easier: the map entry, the pointer invariant, the recursion contract, the queue contents, or the DP state. That keeps the implementation attached to a reason.

Common miss

Candidates use BFS but fail to model levels or queue content clearly. BASIC reduces that risk because the stage sequence forces you to earn the implementation instead of jumping straight into it.

BASIC prompt

“Given that this looks like Graph BFS, what is the simplest way to state the invariant, helper contract, or control-flow skeleton before coding?”

Common trap
Many candidates treat Structure and Implement as the same step. They start writing code while still figuring out the approach. The result is code that wanders — corrections mid-loop, variable names that stop making sense, backtracking that wastes time. Separate the plan from the execution.

References

S10 S12 S13

Related in LeetCode

January 14, 2023

BASIC for LeetCode: the most reliable way to think through coding interviews

LeetCode is often treated like a memory contest.

April 27, 2024

LeetCode Card 206 — Arrays and Hashing / Breakdown

This pattern usually appears when the prompt involves lookup, duplicate detection, counting, grouping, or direct indexbased traversal. Problems like Two Sum, Contains Duplicate,…

April 29, 2024

LeetCode Card 207 — Arrays and Hashing / Assess

This pattern usually appears when the prompt involves lookup, duplicate detection, counting, grouping, or direct indexbased traversal. Problems like Two Sum, Contains Duplicate,…