码迷,mamicode.com
首页 > 编程语言 > 详细

C++获取单链表的倒数第k个节点

时间:2019-02-03 14:07:35      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:highlight   return   单链表   list   class   public   null   tno   unsigned   

 

/*
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 == NULL || k == 0){
            return NULL;
        }
        ListNode *pAhead = pListHead;
        ListNode *pBehind = pListHead;
        for(unsigned int i = 0; i < k - 1; i++){
            if(pAhead->next != NULL){
                pAhead = pAhead->next;
            }
            else{
                return NULL;
            }
        }
        while(pAhead->next != NULL){
            pAhead = pAhead->next;
            pBehind = pBehind->next;
        }
        return pBehind;
    }
};

  

C++获取单链表的倒数第k个节点

标签:highlight   return   单链表   list   class   public   null   tno   unsigned   

原文地址:https://www.cnblogs.com/yangwenhuan/p/10350225.html

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