题解 | #链表内指定区间反转# 纯C代码 注释详细
链表内指定区间反转
http://www.nowcoder.com/practice/b58434e200a648c589ca2063f1faf58c
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*
* C语言声明定义全局变量请加上static,防止重复定义
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类
* @param m int整型
* @param n int整型
* @return ListNode类
*/
struct ListNode* reverseBetween(struct ListNode* head, int m, int n ) {
// write code here
if(head->next==NULL||head==NULL)
return head;
struct ListNode* H=malloc(sizeof(struct ListNode));
H->next=head;
struct ListNode *p,*temp,*cur=H;
//定位反转区间
for(int i=0;i<m-1;i++)
{
cur=cur->next;
}
temp=cur;//区间的头结点
struct ListNode* q;
cur=cur->next;//反转区间第一个节点
q=cur;//保存反转区间第一个节点
//头插法反转链表
for(int i=0;i<n-m+1;i++)
{
p=cur;
cur=cur->next;
p->next=temp->next;
temp->next=p;
}
q->next=cur;//反转区间第一个节点与原链表反转区间后的第一个节点相连
return H->next;
}