您的位置:首页 > 其它

leetcode 092 Reverse Linked List II

2016-05-14 10:50 459 查看
Reverse a linked list from position m to n. Do it in-place and in one-pass.

For example:

Given 
1->2->3->4->5->NULL
, m = 2 and n = 4,

return 
1->4->3->2->5->NULL
.

Note:

Given m, n satisfy the following condition:

1 ≤ m ≤ n ≤ length of list.

Subscribe to see which companies asked this question

class Solution {
public:
ListNode* reverseBetween(ListNode* head, int m, int n) {
ListNode *lm=head, *pre=NULL, *ln=head, *temp=head;
for(int i=1; i<=n; i++) {
if(i < m) {
pre=lm;
lm=pre->next;
}
ln=temp;
temp=temp->next;
}

ListNode *next=ln->next;

for(int i=m; i<=n; i++) {
ListNode *lm_next = lm->next;
lm->next=next;
next = lm;
lm = lm_next;
}

if(pre!=NULL) {
pre->next=next;
} else {
head = next;
}

return head;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: