Given a non-null node from a doubly linked list (which might not be the head), return an array of values from head to tail.
1
0
2
1
cur
3
2
4
3
action=move prev
Step 1 / 3
Step 1:
Walk backwards to find the head.
Pointers: cur=2
Focus: select @ [2]
action="move prev"