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

LeetCode Linked List Easy 83. Remove Duplicates from Sorted List

时间:2018-09-08 22:38:19      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:移除   appear   重复元素   image   ==   rip   nbsp   问题   bubuko   

 Description

Given a sorted linked list, delete all duplicates such that each element appear only once.

Example 1:

Input: 1->1->2
Output: 1->2

Example 2:

Input: 1->1->2->3->3
Output: 1->2->3

 问题描述:给定一个已排序链表,移除重复元素

代码:

 public ListNode DeleteDuplicates(ListNode head) {
        ListNode l = head;
        while(l != null && l.next != null){
            
            if(l.val == l.next.val){
                l.next = l.next.next;
            }else{
                l = l.next;
            }
        }
        return head;
    }

 

 

 

技术分享图片

 

LeetCode Linked List Easy 83. Remove Duplicates from Sorted List

标签:移除   appear   重复元素   image   ==   rip   nbsp   问题   bubuko   

原文地址:https://www.cnblogs.com/c-supreme/p/9610406.html

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