cherrychenlee

导航

 

原文地址:https://www.jianshu.com/p/243980cc6b88

时间限制:1秒 空间限制:32768K

题目描述

输入一个链表,输出该链表中倒数第k个结点。

我的代码

/*
struct ListNode {
	int val;
	struct ListNode *next;
	ListNode(int x) :
			val(x), next(NULL) {
	}
};*/
class Solution {
public:
    ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) {
        if(pListHead==nullptr || k<1)
            return nullptr;
        ListNode* fast=pListHead;
        ListNode* slow=pListHead;
        for(int i=0;i<k-1;i++){
            if(fast->next==nullptr)
                return nullptr;
            fast=fast->next;
        }
        while(fast->next){
            fast=fast->next;
            slow=slow->next;
        }
        return slow;
    }
};

运行时间:4ms
占用内存:472k

posted on 2019-04-27 22:55  cherrychenlee  阅读(80)  评论(0编辑  收藏  举报