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

Posted zslhg903

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 166. 链表倒数第n个节点相关的知识,希望对你有一定的参考价值。

找到单链表倒数第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个节点的主要内容,如果未能解决你的问题,请参考以下文章

166 链表倒数第n个结点

LintCode之链表倒数第n个节点

LintCode 链表倒数第n个节点

LintCode 174. 删除链表中倒数第n个节点

LintCode 删除链表中倒数第n个节点

LintCode Python 简单级题目 174.删除链表中倒数第n个节点