码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer 链表中倒数第k个结点

时间:2018-08-25 20:01:58      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:sig   tail   counter   kth   c++   倒数   public   class   solution   

class Solution {
public:
    ListNode* FindKthToTail(ListNode* pListHead, unsigned int k) {
        if(pListHead == nullptr) return nullptr;
        int len = 0;
        ListNode* root = pListHead;
        while(pListHead != nullptr){
            len++;
            pListHead = pListHead->next;
        }
        int counter = len - k;
        if(counter < 0) return nullptr;
        while(root != nullptr){
            if(counter == 0) return root;
            root = root->next;
            counter--;
        }
        return nullptr;
    }
};

剑指offer 链表中倒数第k个结点

标签:sig   tail   counter   kth   c++   倒数   public   class   solution   

原文地址:https://www.cnblogs.com/theodoric008/p/9534989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!