面试题15: 链表中倒数第k个结点

一. 题目

输入一个链表,输出该链表中倒数第k个结点.为了符合大多数人的习惯,本题从1开始计数,即链表的尾结点是倒数第1个结点.例如一个链表有6个结点,从头结点开始它们的值依次是1,2,3,4,5,6. 这个链表的倒数第3个结点是值为4的结点.

代码请到我的代码库中下载 Point2Offer

二. 代码

package com;

import java.util.Scanner;

/**
 * 剑指offer: 找到倒数第K个节点
 * 方法:1.使用两个指针;2.遍历(此处忽略,因为需遍历两次)
 * 测试用例三种(链表有多个节点,一个节点,链表为空,K大于链表节点数,K在结尾或者开头,K为负数)
 * @author dingding
 * Date:2017-6-14 17:00
 * Declaration: All Rights Reserved!
 */

public class KthNodeFromEnd {
    public static void main(String[] args) {
        test1();
        test2();
    }
    //查找倒数第K个节点
    private static ListNode FindKthToTail(ListNode pHead,int k){
        ListNode pAhead = pHead;
        ListNode pBehind = null;

        if (pHead==null||k==0) //处理输入的k为0
            return null;

        for(int i=0;i<k-1;i++){
            if (pAhead.getNext()!=null) {    //处理K大于链表长度
                pAhead = pAhead.getNext();
            }else{
                return null;
            }

        }
        pBehind = pHead;
        while (pAhead.getNext()!=null){
            pBehind = pBehind.getNext();
            pAhead = pAhead.getNext();
        }
        return pBehind;
    }

    //链表打印
    private static void printList(ListNode pHead) {
        if (pHead==null) {
            System.out.println("空链表!");
        }else {
            while (pHead!=null){
                System.out.print(pHead.getValue()+" ");
                pHead = pHead.getNext();
            }
            System.out.println();
        }
    }

    /*=====================测试用例===============*/
    private static void test(ListNode pHead,int k) {
        System.out.println("初始链表 :");
        printList(pHead);
        System.out.println("输出倒数第K个节点  :");
        ListNode kthToTail = FindKthToTail(pHead, k);
        if (kthToTail==null) {
            System.out.println("K大于链表长度,或者为空链表.");
        }else {
            System.out.println(kthToTail.getValue());
        }
        System.out.println("==============================");
    }

    //链表有多个节点
    private static void test1() {
        ListNode first = new ListNode(1);
        ListNode second = new ListNode(2);
        ListNode third = new ListNode(3);
        ListNode fourth = new ListNode(4);
        ListNode fifth = new ListNode(5);
        ListNode sixth = new ListNode(6);

        first.setNext(second);
        second.setNext(third);
        third.setNext(fourth);
        fourth.setNext(fifth);
        fifth.setNext(sixth);

        System.out.print("输入K: ");
        Scanner fin = new Scanner(System.in);
        int K = fin.nextInt();
        test(first, K);
    }

    //链表为空
    private static void test2() {
        System.out.print("输入K: ");
        Scanner fin = new Scanner(System.in);
        int K = fin.nextInt();
        test(null, K);
    }


}


链表类

package com;
/**
 * 链表类
 * @author dingding
 *
 */

public class ListNode {
    public int value;
    public ListNode next;

    public ListNode(int value) {
        this.value = value;
    }
    public int getValue() {
        return value;
    }
    public void setValue(int value) {
        this.value = value;
    }
    public ListNode getNext() {
        return next;
    }
    public void setNext(ListNode next) {
        this.next = next;
    }
}

有不妥当之处,麻烦告知:D

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值