牛客(14)链表中倒数第k个结点

//    题目描述
//    输入一个链表,输出该链表中倒数第k个结点。
    public class ListNode {
        int val;
        ListNode next = null;

        ListNode(int val) {
            this.val = val;
        }
    }
    public static ListNode FindKthToTail(ListNode head,int k) {

        Stack<ListNode> listNodeStack = new Stack<ListNode>();
        while(head!=null){
            listNodeStack.push(head);
            head=head.next;
        }
        while (!listNodeStack.isEmpty()){
            if (k==1){
                return listNodeStack.pop();
            }
            k--;
            listNodeStack.pop();

        }
        return null;
    }

 

posted @ 2018-05-06 10:48  楷兵  阅读(93)  评论(0编辑  收藏  举报