link:http:
reverse a linked list from position m to n.
do it in-place and in one-pass.
for
example:
given <code>1->2->3->4->5->null</code>, m =
2 and n = 4,
return <code>1->4->3->2->5->null</code>.
note:
given m, n satisfy
the following condition:
1 ≤ m ≤ n ≤
length of list.