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

remove-nth-node-from-end-of-list

时间:2019-08-20 10:44:29      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:while   static   div   一个   --   print   完成   fir   rom   

/**
* 给定一个链表,删除链表的倒数第n个节点并返回链表的头指针
* 例如,
* 给出的链表为:1->2->3->4->5, n= 2.↵↵
* 删除了链表的倒数第n个节点之后,链表变为1->2->3->5.
* 备注:
* 题目保证n一定是合法的
* 请尝试只用一步操作完成该功能
*/

/**
 * 给定一个链表,删除链表的倒数第n个节点并返回链表的头指针
 * 例如,
 *    给出的链表为:1->2->3->4->5, n= 2.↵↵
 *    删除了链表的倒数第n个节点之后,链表变为1->2->3->5.
 * 备注:
 * 题目保证n一定是合法的
 * 请尝试只用一步操作完成该功能
 */

public class Main58 {
    public static void main(String[] args) {
        ListNode head = new ListNode(1);
        head.next = new ListNode(2);
        head.next.next = new ListNode(3);
        head.next.next.next = new ListNode(4);
        head.next.next.next.next = new ListNode(5);
        System.out.println(Main58.removeNthFromEnd(head, 2).val);
    }

    public static class ListNode {
        int val;
        ListNode next;
        ListNode(int x) {
            val = x;
            next = null;
        }
    }

    public static ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode first = head;
        ListNode second = head;
        while (n-- > 0) {
            first = first.next;
        }
        ListNode pre = null;
        while (first.next != null) {
            pre = second;
            second = second.next;
            first = first.next;
        }
        if (pre != null) {
            pre.next = second.next;
        }else{
            head = head.next;
        }
        return head;
    }
}

  

remove-nth-node-from-end-of-list

标签:while   static   div   一个   --   print   完成   fir   rom   

原文地址:https://www.cnblogs.com/strive-19970713/p/11381363.html

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