Problem Statement
Given a linked list A , reverse the order of all nodes at even positions.
Return the head of the new linked list.
Example 1:
1 3 5 7 9 2 4 6 8 0
>> 1 0 5 6 9 2 4 7 8 3
Example 2:
1 2 7 6
>> 1 6 7 2