题目描述
输入一个链表,输出该链表中倒数第k个结点。
我的Code如下:
/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode FindKthToTail(ListNode head,int k) {
ListNode pre = head;
int count = 0;
while(head != null){
count++;
head = head.next;
}
if(k>count){
return null;
}
for(int i=0; i<count-k; i++){
pre = pre.next;
}
return pre;
}
}
网友评论