Remove Linked List Elements
Posted wangcl-8645
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Remove Linked List Elements相关的知识,希望对你有一定的参考价值。
/** * Definition for singly-linked list. * public class ListNode * public int val; * public ListNode next; * public ListNode(int x) val = x; * */ public class Solution public ListNode RemoveElements(ListNode head, int val) if(head==null) return head; ListNode node=new ListNode(-1); ListNode temp=node; node.next=head; while(temp.next!=null) if(temp.next.val==val) temp.next=temp.next.next; else temp=temp.next; return node.next;
以上是关于Remove Linked List Elements的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode28.Linked List— Remove Linked List Elements删除链表元素
[LeetCode] 203. Remove Linked List Elements_Easy tag: Linked LIst
203. Remove Linked List Elements [easy] (Python)