指定区间进行链表翻转
程序员文章站
2024-03-15 17:37:00
...
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
class Solution {
public:
/**
*
* @param head ListNode类
* @param m int整型
* @param n int整型
* @return ListNode类
*/
ListNode* reverseBetween(ListNode* head, int m, int n) {
// write code here
ListNode * dummy=new ListNode(0);
dummy->next=head;
ListNode *pre=dummy;
ListNode *cur=dummy->next;
for(int i=1;i<m;i++){
pre=cur;
cur=cur->next;
}
for(int i=0;i<n-m;i++){
ListNode* tmp=cur->next;
cur->next=tmp->next;
tmp->next=pre->next;
pre->next=tmp;
}
return dummy->next;
}
};
上一篇: C语言-从代码到程序的过程理解
下一篇: 初夏小谈:C++之全面剖析多态(一)
推荐阅读