专栏主页:计算机专业基础知识总结(适用于期末复习考研刷题求职面试)系列文章https://blog.csdn.net/seeker1994/category_12585732.html
题目描述
链表中倒数第k个结点
题解报告
ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) {if(pListHead == NULL)return NULL;ListNode *pre=pListHead, *q=pListHead;int count = 0, t = k;while(q != NULL){count++;if(t<1)pre = pre->nex