odd
to head, even
to head.next, and evenHead
to head.next.even
and even.next
are not null:
a. Set odd.next
to even.next
to link the next odd node.
b. Move odd
to odd.next
.
c. Set even.next
to odd.next
to link the next even node.
d. Move even
to even.next
.odd.next
to evenHead
.