输入一个链表,输出该链表中倒数第k个节点。为了符合大多数人的习惯,本题从1开始计数,即链表的尾节点是倒数第1个节点。
例如,一个链表有 6 个节点,从头节点开始,它们的值依次是 1、2、3、4、5、6。这个链表的倒数第 3 个节点是值为 4 的节点。
示例:
给定一个链表: 1->2->3->4->5, 和 k = 2.
返回链表 4->5.
使用递归
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode getKthFromEnd(ListNode head, int k) {
int count = 0;
ListNode pre = head;
while (true) {
count = getNodeKeyEnd(pre, count);
if(k==count)break;
count = 0;
pre = pre.next;
}
return pre;
}
public int getNodeKeyEnd(ListNode pre,int count){
if (pre == null) return count;
count++;
return getNodeKeyEnd(pre = pre.next,count);
}
}
标签:pre,count,ListNode,22,int,节点,链表,倒数第
From: https://www.cnblogs.com/xiaochaofang/p/17685997.html