LeetCode 面试题22. 链表中倒数第k个节点

写在前面: 起初想到的是先遍历一遍,再重新把相差的个数跑完,后用双指针优化成了只需要跑一遍就能得到结果

C代码:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* getKthFromEnd(ListNode* head, int k) {
        // int sum=0;
        // ListNode *p=head;
        // while(p)
        // {
        //     p=p->next;
        //     sum++;
        // }
        // int temp=sum-k;
        // while(temp--)
        //     head=head->next;
        // return head;

        ListNode *fast=head,*slow=head;
        int flag=0;
        while(fast)
        {
            if(flag>=k)
                slow=slow->next;
            fast=fast->next;
            flag++;
        }
        return slow;
    }
};

JS代码:

/**
 * Definition for singly-linked list.
 * function ListNode(val) {
 *     this.val = val;
 *     this.next = null;
 * }
 */
/**
 * @param {ListNode} head
 * @param {number} k
 * @return {ListNode}
 */
var getKthFromEnd = function(head, k) {
    // var sum=0,p=head;
    // while(p)
    // {
    //     sum++;
    //     p=p.next;
    // }
    // var temp=sum-k;
    // while(temp--)
    // {
    //     head=head.next;
    // }
    // return head;

    var fast=head,slow=head,flag=0;
    while(fast)
    {
        if(flag>=k)
            slow=slow.next;
        fast=fast.next;
        flag++;
    }
    return slow;
};

题目地址

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值