python解法

#方法一 用list存储访问倒数第k个 注意存储的是ListNode结点
class Solution:
    def FindKthToTail(self, head, k):
        # write code here
        if not head or k<0 :
               return 
        res=[]
        while head:
                   res.append(head)
                   head=head.next
        return res[-k] if 0<k<=len(res) else None
#方法二快慢指针法 注意k大于链表长度时处理
# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None
class Solution:
    def FindKthToTail(self, head, k):
        if not head or k<0:
            return 
        fast=slow=head
        while k and fast:
            fast=fast.next
            k-=1
        if k>0 and not fast:#注意k大于链表长度时处理
            return 
        while fast:
            fast=fast.next
            slow=slow.next
        return slow
全部评论

相关推荐

10-18 13:01
已编辑
西安理工大学 C++
小米内推大使:建议技能还是放上面吧,hr和技术面试官第一眼想看的应该是技能点和他们岗位是否匹配
点赞 评论 收藏
分享
有趣的牛油果开挂了:最近这个阶段收到些杂七杂八的短信是真的烦
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务