剑指offer刷题之链表中倒数第k个结点

题目描述

输入一个链表,输出该链表中倒数第k个结点。

# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def FindKthToTail(self, head, k):
        # write code here
        l = []
        while head != None:
            l.append(head)
            head = head.next
        if k>len(l) or k<1:
            return None
        else:
            return l[-k]

猜你喜欢

转载自blog.csdn.net/Alicehzj/article/details/82592951