欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode 删除排序链表中的重复元素

程序员文章站 2022-07-08 08:54:15
...

LeetCode 删除排序链表中的重复元素

题目

LeetCode 删除排序链表中的重复元素

代码

/** 
  * 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 DeleteDuplicates(ListNode head) 
    {        
        ListNode temp = head;        
        while (temp != null)       
        {            
            while (temp.next != null && temp.val == temp.next.val)                
                temp.next = temp.next.next;            
            temp = temp.next;        
        }         
        return head;   
    }
}

LeetCode 删除排序链表中的重复元素