iterative-reversal-O1-space

Status: IN

`reverse_list` uses exactly three local pointer variables (`prev`, `curr`, `next_node`) regardless of list length, making it O(1) auxiliary space.

Source: entries/2026/06/06/reverse-linked-list-solution.md

Depended on by

JSON