leetcode:Reverse Linked List II (反转链表中的一部分)【面试算法题】
题目:Reversealinkedlistfrompositionmton.Doitin-placeandinone-pass.Forexample:Given1->2->3->4->5->NULL,m=2andn=4,return1->4->3->2->5->NULL.Note:Givenm,nsatisfythefollowingcondition:1≤m≤n≤lengthoflist.题意: