1. 程式人生 > >移除鏈表元素

移除鏈表元素

mov turn nod return null str tno lin init

刪除鏈表中等於給定值 val 的所有節點。

示例:

輸入: 1->2->6->3->4->5->6, val = 6
輸出: 1->2->3->4->5

/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode removeElements(ListNode head, int val) {

while(head!=null&&head.val==val)head=head.next;
ListNode l1=head;
while(l1!=null&&l1.next!=null)
{
while(l1.next!=null&&l1.next.val==val)
{
l1.next=l1.next.next;
}
l1=l1.next;
}
return head;
}
}

移除鏈表元素