题解 | #输出单向链表中倒数第k个结点#

输出单向链表中倒数第k个结点

http://www.nowcoder.com/practice/54404a78aec1435a81150f15f899417d

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        
        while(sc.hasNext()){
            int count=sc.nextInt();
        
            Node pre=null;
            Node head=null;
            for(int i=0;i<count;i++){
                int cur=sc.nextInt();
                Node curnode=new Node(cur);
            
                head=curnode;
                curnode.next=pre;
                pre=curnode;
            }
            int k=sc.nextInt();
        
            Node point=head;
            
            for(int i=1;i<k;i++){
                point=point.next;
            }
            System.out.println(point.getValue());
            }
        
    }
}

class Node{
    int value;
    Node next;
    
    public Node(int k){
        this.value=k;
    }
    
    public int getValue(){
        return this.value;
    }
}
// 注意节点顺序

全部评论

相关推荐

巧克力1:双选会不如教室宣讲会
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务