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

leetcode-面试题18-删除链表的节点

时间:2020-04-12 00:00:09      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:list   mic   pen   alt   tco   inf   面试题   delete   new   

技术图片

 

javaO(N)

 

技术图片
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode deleteNode(ListNode head, int val) {
        ListNode firstNode = new ListNode(-1);
        firstNode.next = head;
        ListNode curr = firstNode;
        while(curr!=null && curr.next != null){
            if(curr.next.val == val){
                curr.next = curr.next.next;
            }
            curr = curr.next;
        }
        return firstNode.next;
    }
}
java

 

leetcode-面试题18-删除链表的节点

标签:list   mic   pen   alt   tco   inf   面试题   delete   new   

原文地址:https://www.cnblogs.com/oldby/p/12683014.html

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