码迷,mamicode.com
首页 > 其他好文 > 详细

14.链表倒数节点

时间:2019-04-06 17:16:51      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:节点   code   roo   for   while   node   一个   nbsp   span   

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

注意不能直接head遍历,head返回,head是root;

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode FindKthToTail(ListNode head,int k) {
        if(head == null) {
            return null;
        }
        int count =1;
        
        ListNode  old = head;
        while(head.next != null) {
            head = head.next;
            count++;
        }
        if(k>count) {
            return null;
        }
        for(int i= 0;i<count-k;i++) {
            old = old.next;
        }
        return old;
    }
}

 

14.链表倒数节点

标签:节点   code   roo   for   while   node   一个   nbsp   span   

原文地址:https://www.cnblogs.com/wzQingtTian/p/10662095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!