新手题解 | #链表中倒数最后k个结点(反转链表)#
链表中倒数最后k个结点
https://www.nowcoder.com/practice/886370fe658f41b498d40fb34ae76ff9
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param pHead ListNode类
* @param k int整型
* @return ListNode类
*/
#include <stdlib.h>
struct ListNode* FindKthToTail(struct ListNode* pHead, int k ) {
// write code here
struct ListNode* pre=NULL,*cur=pHead,*temp=NULL;
struct ListNode* p=malloc(sizeof(struct ListNOde*));
p->next=NULL;
int count=0;
//链表为空
if(pHead==NULL){
return pHead;
}
//反转链表
while (cur) {
temp=cur->next;
cur->next=pre;
pre=cur;
cur=temp;
count++;
}
//k大于表长
if(k>count){
return NULL;
}
//头插法(再反转)
for (int i=0;i<k;i++) {
cur=pre->next;
pre->next=p->next;
p->next=pre;
pre=cur;
}
return p->next;
}
