OJ lintcode 链表倒数第n个节点

找到单链表倒数第n个节点,保证链表中节点的最少数量为n。
您在真实的面试中是否遇到过这个题?
Yes
样例
给出链表 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 *p=head;
        ListNode *q=head;
        for(int i=0;i<n;i++){
            p=p->next;
        }

        while(p!=NULL){
            p=p->next;
            q=q->next;
        }

        return q;
    }
};
    原文作者:zhaozhengcoder
    原文地址: https://www.jianshu.com/p/cabe8f78c269
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞