Basic Framework
ImplementAlgorithm Selectiontheoryresearch-cardWhy BASIC Works

Theory Card 064 — Algorithm Selection / Implement

Algorithm Selection — BASIC step map

Research lens

Algorithm selection is not just recognition; it is the ability to map a problem's structure to a suitable solving strategy. In the Implement stage of BASIC, the goal is to execute the chosen plan in controlled order. That makes this concept especially relevant here, because it shapes how much mental work the candidate is trying to carry at once and what gets made explicit.

This is the step interviewers actually score.

Why it matters in SWE interviews

Interview performance often hinges on identifying when a hash map beats sorting, or when BFS beats DFS, or when a queue beats synchronous work. Assess slows selection down just enough to make it rational instead of reflexive. In practice, Implement is where the candidate should ask: How do we write or walk through the solution one stable layer at a time? That question acts like a cognitive boundary. It protects the answer from turning into an unstructured search.

BASIC move

A strong move here is to transcribe the plan instead of improvising. For Algorithm Selection, that means deliberately naming the important units instead of juggling them implicitly. The interviewer sees cleaner reasoning, and the candidate benefits from keeps execution disciplined and easier to debug.

Common miss

The miss is forcing the first remembered pattern onto a problem that only superficially resembles it. When that happens, the candidate usually feels busy, but the answer is actually becoming less inspectable.

Practice prompt

“While practicing, pause at the Implement step and explain how Algorithm Selection changes the way you would handle the prompt.”

Execution discipline
The best implementations are boring. They follow the structure step by step, without clever detours. If you find yourself innovating during implementation, that's usually a sign the Structure step was incomplete. Go back and fill the gap rather than improvising forward.

References

S10 S12 S13

Related in Why BASIC Works

January 7, 2023

Why BASIC works for software engineers

BASIC — Breakdown, Assess, Structure, Implement, Check — works for software engineers because it is not just a catchy mnemonic. It is a compact operating system for thinking under…

January 19, 2023

Theory Card 006 — Cognitive Load / Breakdown

Cognitive load theory argues that solving unfamiliar problems can consume the same limited mental resources needed to learn and reason clearly. In the Breakdown stage of BASIC,…

January 21, 2023

Theory Card 007 — Cognitive Load / Assess

Cognitive load theory argues that solving unfamiliar problems can consume the same limited mental resources needed to learn and reason clearly. In the Assess stage of BASIC, the…