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

<剑指offer> 第10题

时间:2019-08-09 10:41:04      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:head   off   while   链表   turn   lse   static   删除   int   

题目:在O(1)时间删除链表节点

给定单向链表的一个头指针和节点指针,定义一个函数在O(1)时间删除该节点

public class Tenth {
    public class ListNode{
        int val;
        ListNode next;
    }

    public static ListNode removeNode(ListNode head, ListNode toBeDeleted){
        if(head == null || toBeDeleted == null){
            return head;
        }

        //待删除节点为头节点
        if(head == toBeDeleted){
            return head.next;
        }

        //删除多个节点中的某个节点
       ListNode pre = head;
       while(pre.next != toBeDeleted){
           pre = pre.next;
       }
        //待删除的为尾节点
        if(toBeDeleted.next == null){
           pre.next = null;
        }else{
           //待删除的节点在链表中
            pre.next = toBeDeleted.next;
            toBeDeleted.next = null;
        }
        return head;
    }
}

 

<剑指offer> 第10题

标签:head   off   while   链表   turn   lse   static   删除   int   

原文地址:https://www.cnblogs.com/HarSong13/p/11325509.html

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