Say why, not just what
In interviews, picking the right data structure is only half the answer. You must explain why it fits the operations in the problem.
Use this pattern: operation needed, data structure chosen, cost, trade-off, edge case.
What interviewers listen for
They want to see that you can reason, not recite. If you choose a hash map, say it gives average O(1) lookup and update, but uses extra space.
If you choose a heap, say it helps when you repeatedly need the min or max item, not when you need sorted full output once.