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

LintCode 166. 链表倒数第n个节点

时间:2018-01-28 21:57:38      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:null   nbsp   efi   write   节点   ane   class   返回   post   

找到单链表倒数第n个节点,保证链表中节点的最少数量为n。

 样例

给出链表 3->2->1->5->null和n = 2,返回倒数第二个节点的值1.

 

/**
 * Definition of ListNode
 * class ListNode {
 * public:
 *     int val;
 *     ListNode *next;
 *     ListNode(int val) {
 *         this->val = val;
 *         this->next = NULL;
 *     }
 * }
 */


class Solution {
public:
    /*
     * @param head: The first node of linked list.
     * @param n: An integer
     * @return: Nth to last node of a singly linked list. 
     */
    ListNode * nthToLast(ListNode * head, int n) {
        // write your code here
        ListNode* pre,*p;
        pre=head,p=head;
        while(n--)
        {
            if(p)
            {
                p=p->next;
            }
            else
            {
                return NULL;
            }
        }
        while(p)
        {
            p=p->next;
            pre=pre->next;
        }
        return pre;
    }
};

 

LintCode 166. 链表倒数第n个节点

标签:null   nbsp   efi   write   节点   ane   class   返回   post   

原文地址:https://www.cnblogs.com/zslhg903/p/8372362.html

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